skeleton added

This commit is contained in:
2026-02-08 19:56:16 +03:00
committed by KentoNion
commit f0b04b229a
19 changed files with 2021 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package telegram
import (
"context"
"tgVideoCall/domain/admin/models"
)
type Service interface {
// Получает администратора из базы данных, возвращает ошибку если не является администратором
GetAdmin(ctx context.Context, id int)(admin models.Admin, err error)
}