niki/main.go

14 lines
258 B
Go
Raw Normal View History

2023-12-15 08:24:06 +00:00
package niki
2023-12-16 06:09:50 +00:00
import (
"git.gocasts.ir/ebhomengo/niki/adapter/storage"
"git.gocasts.ir/ebhomengo/niki/delivery/http"
)
2023-12-15 08:24:06 +00:00
2023-12-16 06:09:50 +00:00
func main() {
//initialize D.B.M.S. (Database management system)
storage.Init()
//initialize new Echo (web framework)
http.Init()
2023-12-15 08:24:06 +00:00
}