tebakaja's picture
feat: crafting stock and national currency proxy
a1eed6b
raw
history blame
302 Bytes
package national_currency
import "context"
type NationalCurrencyService interface {
NationalCurrencyListsService(ctx context.Context) (ApiResponse, error)
NationalCurrencyPredictionService(ctx context.Context, req PredictionRequest) (ApiResponse, error)
}
type NationalCurrencyServiceImpl struct{}