diff --git a/config/config.go b/config/config.go index 7baa905..63d82d3 100644 --- a/config/config.go +++ b/config/config.go @@ -8,7 +8,7 @@ import ( //Stores the main configuration for the application type Configuration struct { - ServerPort string + ServerPort string } var err error diff --git a/main.go b/main.go index 06248e8..243ae83 100644 --- a/main.go +++ b/main.go @@ -5,8 +5,8 @@ package main * License: MIT **/ import ( - "github.com/thewhitetulip/Tasks/views" "github.com/thewhitetulip/Tasks/config" + "github.com/thewhitetulip/Tasks/views" "log" "net/http" )