Matheus 6 years ago
parent
commit
ce3de4a156
4 changed files with 1 additions and 5 deletions
  1. BIN
      build
  2. 0 1
      config.go
  3. 0 3
      config/config.go
  4. 1 1
      main.go

BIN
build


+ 0 - 1
config.go

@@ -1,4 +1,3 @@
1 1
 package main
2 2
 
3
-//ServerPort para escuta do servidor
4 3
 const SERVER_PORT = 8080

+ 0 - 3
config/config.go

@@ -1,3 +0,0 @@
1
-package config
2
-
3
-const SERVER_PORT = 8080

+ 1 - 1
main.go

@@ -7,7 +7,7 @@ import (
7 7
 	"net/http"
8 8
 	"strconv"
9 9
 
10
-	router "./core/router"
10
+	"./core/router"
11 11
 )
12 12
 
13 13
 func main() {