Skip to content

Commit 97c1d0f

Browse files
committed
save
1 parent 7d0548d commit 97c1d0f

18 files changed

+18
-28
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/codemodify/systemkit-clicmdflags
1+
module github.com/remoteit/systemkit-clicmdflags
22

33
go 1.13

license

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
11
#
2-
# The Free License
3-
# https://github.com/codemodify/TheFreeLicense
4-
#
5-
# ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~
6-
# @Authors : Nicolae Carabut
7-
# @URLs : https://github.com/codemodify/systemkit-clicmdflags
8-
# @Contributors :
9-
# ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~ ~~~~
10-
#
11-
# You are free to use this art project as you see fit.
12-
# There are no mutual restrictions or mutual obligations of any kind.
2+
# remot3it
133
#

samples/cmdflags/appRoot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"path/filepath"
77

8-
clicmdflags "github.com/codemodify/systemkit-clicmdflags"
8+
clicmdflags "github.com/remoteit/systemkit-clicmdflags"
99
)
1010

1111
// AppRootCmdFlags -

samples/cmdflags/device.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"path/filepath"
77

8-
clicmdflags "github.com/codemodify/systemkit-clicmdflags"
8+
clicmdflags "github.com/remoteit/systemkit-clicmdflags"
99
)
1010

1111
func init() {

samples/cmdflags/extended-info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"path/filepath"
77

8-
clicmdflags "github.com/codemodify/systemkit-clicmdflags"
8+
clicmdflags "github.com/remoteit/systemkit-clicmdflags"
99
)
1010

1111
// ExtendedInfoCmdFlags -

samples/cmdflags/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"path/filepath"
77

8-
clicmdflags "github.com/codemodify/systemkit-clicmdflags"
8+
clicmdflags "github.com/remoteit/systemkit-clicmdflags"
99
)
1010

1111
func init() {

samples/cmdflags/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"path/filepath"
77

8-
clicmdflags "github.com/codemodify/systemkit-clicmdflags"
8+
clicmdflags "github.com/remoteit/systemkit-clicmdflags"
99
)
1010

1111
func init() {

samples/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55
"os"
66

7-
"github.com/codemodify/systemkit-clicmdflags/samples/cmdflags"
7+
"github.com/remoteit/systemkit-clicmdflags/samples/cmdflags"
88
)
99

1010
func main() {

tests/00-single-command_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
clicmdflags "github.com/codemodify/systemkit-clicmdflags"
12+
clicmdflags "github.com/remoteit/systemkit-clicmdflags"
1313
)
1414

1515
type cmdFlags struct {

tests/01-root-command_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"testing"
77

8-
clicmdflags "github.com/codemodify/systemkit-clicmdflags"
8+
clicmdflags "github.com/remoteit/systemkit-clicmdflags"
99
)
1010

1111
func Test01_RootCommand(t *testing.T) {

0 commit comments

Comments
 (0)