diff --git a/alarm/alarm.go b/alarm/alarm.go index f14323e..964ad3d 100644 --- a/alarm/alarm.go +++ b/alarm/alarm.go @@ -1,8 +1,8 @@ package alarm import ( - "alrm/alarm/email" "fmt" + "git.binarythought.com/cdramey/alrm/alarm/email" ) type Alarm interface { diff --git a/check/check_ping.go b/check/check_ping.go index fb3b36a..97a54d9 100644 --- a/check/check_ping.go +++ b/check/check_ping.go @@ -1,8 +1,8 @@ package check import ( - "alrm/check/ping" "fmt" + "git.binarythought.com/cdramey/alrm/check/ping" "strconv" "strings" "time" diff --git a/config/config.go b/config/config.go index e137870..a2f6923 100644 --- a/config/config.go +++ b/config/config.go @@ -1,8 +1,8 @@ package config import ( - "alrm/alarm" "fmt" + "git.binarythought.com/cdramey/alrm/alarm" "runtime" "strconv" "time" diff --git a/config/host.go b/config/host.go index e0157f0..8981686 100644 --- a/config/host.go +++ b/config/host.go @@ -1,7 +1,7 @@ package config import ( - "alrm/check" + "git.binarythought.com/cdramey/alrm/check" ) type Host struct { diff --git a/config/parser.go b/config/parser.go index 2fcbc9a..4e06f67 100644 --- a/config/parser.go +++ b/config/parser.go @@ -1,9 +1,9 @@ package config import ( - "alrm/alarm" - "alrm/check" "fmt" + "git.binarythought.com/cdramey/alrm/alarm" + "git.binarythought.com/cdramey/alrm/check" "strings" ) diff --git a/go.mod b/go.mod index 71641ff..fc0d00d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module alrm +module git.binarythought.com/cdramey/alrm go 1.15 diff --git a/main.go b/main.go index 9b4f984..947268f 100644 --- a/main.go +++ b/main.go @@ -1,10 +1,10 @@ package main import ( - "alrm/config" "encoding/json" "flag" "fmt" + "git.binarythought.com/cdramey/alrm/config" "os" "strings" ) diff --git a/server.go b/server.go index 00004ff..e6567d2 100644 --- a/server.go +++ b/server.go @@ -1,9 +1,9 @@ package main import ( - "alrm/check" - "alrm/config" "fmt" + "git.binarythought.com/cdramey/alrm/check" + "git.binarythought.com/cdramey/alrm/config" "time" )