From 9de26f65473f703715de0dc4882d2149be027c2c Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 24 Jul 2018 13:56:57 +0200 Subject: [PATCH] cleanup --- docs/concepts.md | 1 - main.go | 8 +------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/concepts.md b/docs/concepts.md index 3a05bcf65e..d05159d5d6 100644 --- a/docs/concepts.md +++ b/docs/concepts.md @@ -60,4 +60,3 @@ object once. ## Standard web handler -// TBD \ No newline at end of file diff --git a/main.go b/main.go index f33c3bac7e..6915274fd4 100644 --- a/main.go +++ b/main.go @@ -11,12 +11,6 @@ import ( "time" ) -// UserLogin Object to recive user credentials in JSON format -type UserLogin struct { - Username string `json:"username" form:"username"` - Password string `json:"password" form:"password"` -} - // Version sets the version to be printed to the user. Gets overwritten by "make release" or "make build" with last git commit or tag. var Version = "0.1" @@ -37,7 +31,7 @@ func main() { } // Version notification - fmt.Println("List version", Version) + fmt.Println("Vikunja version", Version) // Start the webserver e := routes.NewEcho()