mirror of
https://github.com/LeRoid-hub/Bookholder-API.git
synced 2025-01-30 18:24:56 +00:00
16 lines
258 B
Go
16 lines
258 B
Go
package main
|
|
|
|
import (
|
|
"github.com/LeRoid-hub/Bookholder-API/config"
|
|
"github.com/LeRoid-hub/Bookholder-API/database"
|
|
"github.com/LeRoid-hub/Bookholder-API/server"
|
|
)
|
|
|
|
func main() {
|
|
env := config.Load()
|
|
|
|
db := database.SetEnv(env)
|
|
|
|
server.Run(env, db)
|
|
}
|