From caacaaf2d9df9189081d0872470dfda4e79912bd Mon Sep 17 00:00:00 2001 From: Martyn R Date: Wed, 29 Dec 2021 21:44:28 +0000 Subject: [PATCH] Rename to remove golang- prefix --- base/base.go | 3 +++ go.mod | 2 +- printall.go | 6 +++--- project/project.go | 2 +- user/user.go | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/base/base.go b/base/base.go index e905bb1..74270e9 100644 --- a/base/base.go +++ b/base/base.go @@ -1,3 +1,6 @@ +//go:build !android && !ios +// +build !android,!ios + package base import ( diff --git a/go.mod b/go.mod index 0e5eb90..ddf1878 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.martyn.berlin/martyn/golang-directories +module git.martyn.berlin/martyn/directories go 1.17 diff --git a/printall.go b/printall.go index f340ecf..1691f2f 100644 --- a/printall.go +++ b/printall.go @@ -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 { diff --git a/project/project.go b/project/project.go index 39b0919..52e9b2a 100644 --- a/project/project.go +++ b/project/project.go @@ -5,7 +5,7 @@ import ( "runtime" "strings" - "git.martyn.berlin/martyn/golang-directories/base" + "git.martyn.berlin/martyn/directories/base" ) var projectNameShort string diff --git a/user/user.go b/user/user.go index 51994f9..5ae5f14 100644 --- a/user/user.go +++ b/user/user.go @@ -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) {