12 lines
165 B
Go
12 lines
165 B
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
|
|
"tgVideoCall/domain/admin/models"
|
|
)
|
|
|
|
type Storage interface {
|
|
GetAdmin(ctx context.Context,userID int) (models.Admin, error)
|
|
}
|