crypto_alert_bot/internal/entities/user.go

9 lines
123 B
Go

package entities
type UserID string
type TelegramID int64
type User struct {
ID UserID
TelegramID TelegramID
}