rename package

This commit is contained in:
Pedro Nasser
2016-07-29 19:35:08 -03:00
parent a6f86aaeb8
commit 0facc5dbff
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
package server
package api
import (
"fmt"

View File

@@ -26,6 +26,6 @@ func main() {
}
log.Printf("config: %+v", config)
api := server.New(config)
api.Start()
srv := api.New(config)
srv.Start()
}