maximo tejeda 0d735735ba
Some checks failed
dev test / test (push) Failing after 29s
dev test / vulnCheck (push) Has been skipped
dev test / Ci-Lint (push) Has been skipped
ADAPT to local git
2024-12-04 22:15:22 -04:00

14 lines
457 B
Go

package ports
import "git.maximotejeda.com/maximo/us-dop-bot/internal/application/domain"
type DolarService interface {
GetLatest(name string) (*domain.History, error)
GetSince(name string, duration int64) ([]*domain.History, error)
GetInstByType(name string) ([]string, error)
Subscribe(int64, string) (bool, error)
Unsubscribe(int64, string) (bool, error)
GetSubscribedUsers(string) ([]int64, error)
GetSubscribedInsts(int64) ([]string, error)
}