Initial dumb servers

This commit is contained in:
Bel LaPointe
2019-03-14 14:43:02 -06:00
commit 1f679f4c06
10 changed files with 381 additions and 0 deletions

11
server/serve/new_test.go Normal file
View File

@@ -0,0 +1,11 @@
package serve
import (
"os"
"testing"
)
func TestNew(t *testing.T) {
os.Setenv("DB", "MAP")
New()
}