9 lines
123 B
Go
9 lines
123 B
Go
package entities
|
|
|
|
type UserID string
|
|
type TelegramID int64
|
|
|
|
type User struct {
|
|
ID UserID
|
|
TelegramID TelegramID
|
|
}
|