12 lines
159 B
Go
12 lines
159 B
Go
package main
|
|
|
|
import "api_manager/web"
|
|
|
|
// main package of the programm
|
|
// launching the main web package
|
|
// for future: loging
|
|
|
|
func main() {
|
|
web.Server()
|
|
}
|