switched to proper package names
This commit is contained in:
parent
dbd74982ff
commit
aadd46ae1b
@ -1,8 +1,8 @@
|
|||||||
package alarm
|
package alarm
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"alrm/alarm/email"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"git.binarythought.com/cdramey/alrm/alarm/email"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Alarm interface {
|
type Alarm interface {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package check
|
package check
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"alrm/check/ping"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"git.binarythought.com/cdramey/alrm/check/ping"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"alrm/alarm"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"git.binarythought.com/cdramey/alrm/alarm"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"alrm/check"
|
"git.binarythought.com/cdramey/alrm/check"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Host struct {
|
type Host struct {
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"alrm/alarm"
|
|
||||||
"alrm/check"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"git.binarythought.com/cdramey/alrm/alarm"
|
||||||
|
"git.binarythought.com/cdramey/alrm/check"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
|||||||
module alrm
|
module git.binarythought.com/cdramey/alrm
|
||||||
|
|
||||||
go 1.15
|
go 1.15
|
||||||
|
|
||||||
|
2
main.go
2
main.go
@ -1,10 +1,10 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"alrm/config"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"git.binarythought.com/cdramey/alrm/config"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user