switched to proper package names

This commit is contained in:
2021-02-03 05:59:31 -09:00
parent dbd74982ff
commit aadd46ae1b
8 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
package config
import (
"alrm/alarm"
"fmt"
"git.binarythought.com/cdramey/alrm/alarm"
"runtime"
"strconv"
"time"

View File

@ -1,7 +1,7 @@
package config
import (
"alrm/check"
"git.binarythought.com/cdramey/alrm/check"
)
type Host struct {

View File

@ -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"
)