gofmt on main and config

This commit is contained in:
Suraj Patil 2016-01-23 16:04:33 +05:30
parent 825fc379e0
commit 3364dff25e
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import (
//Stores the main configuration for the application //Stores the main configuration for the application
type Configuration struct { type Configuration struct {
ServerPort string ServerPort string
} }
var err error var err error

View File

@ -5,8 +5,8 @@ package main
* License: MIT * License: MIT
**/ **/
import ( import (
"github.com/thewhitetulip/Tasks/views"
"github.com/thewhitetulip/Tasks/config" "github.com/thewhitetulip/Tasks/config"
"github.com/thewhitetulip/Tasks/views"
"log" "log"
"net/http" "net/http"
) )