13 lines
163 B
Go
13 lines
163 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()
|
|
} |