crypto_alert_bot/internal/entities/user.go

10 lines
123 B
Go
Raw Permalink Normal View History

2026-02-25 20:55:10 +03:00
package entities
type UserID string
type TelegramID int64
type User struct {
ID UserID
TelegramID TelegramID
}