diff --git a/examples/cron/cron_job.go b/examples/cron/cron_job.go index fdbc241..479adf7 100644 --- a/examples/cron/cron_job.go +++ b/examples/cron/cron_job.go @@ -8,8 +8,8 @@ import ( "syscall" "time" + "github.com/daqnext/daemon" "github.com/robfig/cron" - "github.com/takama/daemon" ) const ( diff --git a/examples/myservice.go b/examples/myservice.go index a9cce43..ab61680 100644 --- a/examples/myservice.go +++ b/examples/myservice.go @@ -9,7 +9,7 @@ import ( "os/signal" "syscall" - "github.com/takama/daemon" + "github.com/daqnext/daemon" ) const ( diff --git a/go.mod b/go.mod index 30e34f0..439fc3f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ -module github.com/takama/daemon +module github.com/daqnext/daemon -go 1.14 +go 1.17 require ( github.com/robfig/cron v1.2.0