implemented webServer, and implemented listPadsImporter

This commit is contained in:
arnaucode
2018-04-15 00:21:36 +02:00
parent 3691547c68
commit 3e0ef09e55
19 changed files with 420 additions and 5 deletions

9
webServer/error.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import "github.com/fatih/color"
func check(err error) {
if err != nil {
color.Red(err.Error())
}
}