Big refactor to allow for multiple watchers, v2 configuration file with migration and new UI for configuration

This commit is contained in:
2021-10-06 23:12:43 +10:30
parent 7dddc92364
commit 8483fe7db9
8 changed files with 512 additions and 529 deletions

View File

@@ -1,6 +1,7 @@
package log
import (
"log"
"time"
)
@@ -42,4 +43,5 @@ func SendLog(entry string, entryType LogEntryType) {
Entry: entry,
Type: entryType,
}
log.Printf(entry)
}