user usecases & repository methods

This commit is contained in:
yash 2026-02-25 20:55:10 +03:00
parent 7f6cd8e557
commit 39b89fc404
5 changed files with 125 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package entities
type UserID string
type TelegramID int64
type User struct {
ID UserID
TelegramID TelegramID
}