project structure

This commit is contained in:
Fran Jurmanović
2021-05-02 20:35:00 +02:00
parent 9a272d47c4
commit 3a5138eb83
10 changed files with 292 additions and 0 deletions

9
cmd/api/main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"wallet-api/pkg/utl/server"
)
func main() {
server.Start()
}