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