Go to file
2025-04-01 22:10:15 +03:00
cmd feat: method impl added for the notfication 2025-04-01 22:10:15 +03:00
db feat: method impl added for the notfication 2025-04-01 22:10:15 +03:00
gen/db feat: method impl added for the notfication 2025-04-01 22:10:15 +03:00
internal feat: method impl added for the notfication 2025-04-01 22:10:15 +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 feat: method impl added for the notfication 2025-04-01 22:10:15 +03:00
go.sum feat: method impl added for the notfication 2025-04-01 22:10:15 +03:00
makefile feat: method impl added for the notfication 2025-04-01 22:10:15 +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