Rename to remove golang- prefix
This commit is contained in:
parent
b027424b86
commit
caacaaf2d9
|
@ -1,3 +1,6 @@
|
|||
//go:build !android && !ios
|
||||
// +build !android,!ios
|
||||
|
||||
package base
|
||||
|
||||
import (
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module git.martyn.berlin/martyn/golang-directories
|
||||
module git.martyn.berlin/martyn/directories
|
||||
|
||||
go 1.17
|
||||
|
||||
|
|
|
@ -6,9 +6,9 @@ import (
|
|||
"runtime"
|
||||
"strings"
|
||||
|
||||
"git.martyn.berlin/martyn/golang-directories/base"
|
||||
"git.martyn.berlin/martyn/golang-directories/project"
|
||||
"git.martyn.berlin/martyn/golang-directories/user"
|
||||
"git.martyn.berlin/martyn/directories/base"
|
||||
"git.martyn.berlin/martyn/directories/project"
|
||||
"git.martyn.berlin/martyn/directories/user"
|
||||
)
|
||||
|
||||
func GetFunctionName(i interface{}) string {
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"runtime"
|
||||
"strings"
|
||||
|
||||
"git.martyn.berlin/martyn/golang-directories/base"
|
||||
"git.martyn.berlin/martyn/directories/base"
|
||||
)
|
||||
|
||||
var projectNameShort string
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
|
||||
"golang.org/x/sys/windows"
|
||||
|
||||
"git.martyn.berlin/martyn/golang-directories/base"
|
||||
"git.martyn.berlin/martyn/directories/base"
|
||||
)
|
||||
|
||||
func Home() (string, error) {
|
||||
|
|
Loading…
Reference in New Issue