Go to file
2025-04-02 10:55:56 +03:00
cmd Merge branch 'main' into feature/notification 2025-04-02 10:55:56 +03:00
db Merge branch 'main' into feature/notification 2025-04-02 10:55:56 +03:00
docs feat: added bet and ticket handlers 2025-04-01 22:03:23 +03:00
gen/db Merge branch 'main' into feature/notification 2025-04-02 10:55:56 +03:00
internal Merge branch 'main' into feature/notification 2025-04-02 10:55:56 +03:00
.air.toml init 2025-03-26 23:50:19 +03:00
.gitignore init 2025-03-26 23:50:19 +03:00
compose.db.yaml init 2025-03-26 23:50:19 +03:00
go.mod Merge branch 'main' into feature/notification 2025-04-02 10:55:56 +03:00
go.sum Merge branch 'main' into feature/notification 2025-04-02 10:55:56 +03:00
makefile Merge branch 'main' into feature/notification 2025-04-02 10:55:56 +03:00
README.md feat: models added for the notfication 2025-04-01 19:01:42 +03:00
sqlc.yaml init 2025-03-26 23:50:19 +03:00

FortuneBet-Backend

Directory Structure

├── cmd │ ├── main.go ├── db │ ├── migrations │ │ ├── 000001_fortune.down.sql │ │ ├── 000001_fortune.up.sql │ └── query │ ├── user.sql ├── gen │ └── db │ ├── db.go │ ├── models.go │ ├── user.sql.go └── internal ├── config │ ├── config.go ├── domain │ ├── auth.go │ ├── notification.go │ ├── user.go ├── logger │ ├── logger.go ├── repository │ ├── store.go │ ├── user.go ├── services │ ├── notfication │ │ ├── port.go │ │ ├── service.go │ └── user │ ├── port.go │ ├── service.go └── web_server └── validator ├── validatord.go ├── app.go ├── app_routes.go ├── .air.toml ├── .gitignore ├── README.md ├── compose.db.yaml ├── go.mod ├── go.sum ├── makefile ├── sqlc.yaml

End Directory Structure