tebakaja's picture
feat: Crafting Load Balancer Proxy
542878f
raw
history blame
251 Bytes
package crypto
import "context"
type CryptoService interface {
CryptoListsService(ctx context.Context) (ApiResponse, error)
CryptoPredictionService(ctx context.Context, req PredictionRequest) (ApiResponse, error)
}
type CryptoServiceImpl struct{}