Skip to content

Commit

Permalink
feat: Update module name
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkheir committed Oct 10, 2024
1 parent 73ea7f2 commit 04689f7
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ arch:
- ppc64le
- amd64
language: go
go_import_path: github.com/kardianos/service
go_import_path: github.com/SEKOIA-IO/service
sudo: required

go:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# service [![GoDoc](https://godoc.org/github.com/kardianos/service?status.svg)](https://godoc.org/github.com/kardianos/service)
# service [![GoDoc](https://godoc.org/github.com/SEKOIA-IO/service?status.svg)](https://godoc.org/github.com/SEKOIA-IO/service)

service will install / un-install, start / stop, and run a program as a service (daemon).
Currently supports Windows XP+, Linux/(systemd | Upstart | SysV), and OSX/Launchd.
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ platform:
- x86
- x64

clone_folder: c:\gopath\src\github.com\kardianos\service
clone_folder: c:\gopath\src\github.com\SEKOIA-IO\service

environment:
GOPATH: c:\gopath
Expand Down
2 changes: 1 addition & 1 deletion example/logging/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"log"
"time"

"github.com/kardianos/service"
"github.com/SEKOIA-IO/service"
)

var logger service.Logger
Expand Down
2 changes: 1 addition & 1 deletion example/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"os/exec"
"path/filepath"

"github.com/kardianos/service"
"github.com/SEKOIA-IO/service"
)

// Config is the runner app config structure.
Expand Down
2 changes: 1 addition & 1 deletion example/simple/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package main
import (
"log"

"github.com/kardianos/service"
"github.com/SEKOIA-IO/service"
)

var logger service.Logger
Expand Down
2 changes: 1 addition & 1 deletion example/stopPause/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"os"
"time"

"github.com/kardianos/service"
"github.com/SEKOIA-IO/service"
)

var logger service.Logger
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/kardianos/service
module github.com/SEKOIA-IO/service

go 1.12

Expand Down
4 changes: 2 additions & 2 deletions service.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// import (
// "log"
//
// "github.com/kardianos/service"
// "github.com/SEKOIA-IO/service"
// )
//
// var logger service.Logger
Expand Down Expand Up @@ -59,7 +59,7 @@
// logger.Error(err)
// }
// }
package service // import "github.com/kardianos/service"
package service // import "github.com/SEKOIA-IO/service"

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion service_su_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"testing"
"time"

"github.com/kardianos/service"
"github.com/SEKOIA-IO/service"
)

const runAsServiceArg = "RunThisAsService"
Expand Down
2 changes: 1 addition & 1 deletion service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/kardianos/service"
"github.com/SEKOIA-IO/service"
)

func TestRunInterrupt(t *testing.T) {
Expand Down

0 comments on commit 04689f7

Please sign in to comment.