added optional task unique field

This commit is contained in:
simon987
2019-01-29 18:16:40 -05:00
parent f250a2180c
commit 64152bfc08
35 changed files with 877 additions and 156 deletions

View File

@@ -1,9 +1,11 @@
package main
import (
"math/rand"
"src/task_tracker/api"
"src/task_tracker/config"
"src/task_tracker/storage"
"time"
)
func tmpDebugSetup() {
@@ -15,6 +17,7 @@ func tmpDebugSetup() {
func main() {
rand.Seed(time.Now().UTC().UnixNano())
config.SetupConfig()
webApi := api.New()