Damnit again

Former-commit-id: b394f26caf0df7d113ac4cc7dacc9c544af6897f
This commit is contained in:
bel
2019-06-21 18:12:31 -06:00
commit 90a31495c9
32 changed files with 3464 additions and 0 deletions

14
server/server_test.go Normal file
View File

@@ -0,0 +1,14 @@
package server
import (
"local/rssmon3/config"
"testing"
"time"
)
func TestServerRun(t *testing.T) {
config.New()
s := New()
go s.Run()
time.Sleep(time.Millisecond * 100)
}