Some checks failed
dev test / test (push) Successful in 11s
dev test / vulnCheck (push) Successful in 15s
dev test / Ci-Lint (push) Failing after 46s
${{ github.actor }} executed Build Push Prod / build (push) Successful in 4m3s
${{ github.actor }} executed Build Push Prod / deploy (push) Successful in 18s
19 lines
514 B
Go
19 lines
514 B
Go
package ports
|
|
|
|
import (
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
|
|
"git.maximotejeda.com/maximo/us-dop-bot/internal/application/domain"
|
|
)
|
|
|
|
type UserService interface {
|
|
Get(int64) (*domain.User, error)
|
|
Edit(*tgbotapi.User) (bool, error)
|
|
Delete(int64) (bool, error)
|
|
Create(*tgbotapi.User) (bool, error)
|
|
AddBot(int64, string) (bool, error)
|
|
GetBots(int64) ([]string, error)
|
|
DeleteBot(int64, string) (bool, error)
|
|
GetAllBotsUsers(string) ([]*domain.User, error)
|
|
CreateBot(string)(error)
|
|
}
|