Browse Source

Organizando pacotes

William Wiechorek 6 years ago
parent
commit
9bfcfa3e9e
2 changed files with 1 additions and 2 deletions
  1. 1 1
      config/config.go
  2. 0 1
      main.go

+ 1 - 1
config/config.go

@@ -1,4 +1,4 @@
1
-package config
1
+package main
2 2
 
3 3
 /* SERVER CONFIGURATION */
4 4
 const SERVER_PORT = 8081

+ 0 - 1
main.go

@@ -5,7 +5,6 @@ import (
5 5
 	"net/http"
6 6
 	"strconv"
7 7
 
8
-	"./config"
9 8
 	"./core/database"
10 9
 	"./core/errors"
11 10
 	req "./core/request"