File size: 302 Bytes
542878f
 
 
 
a1eed6b
 
 
542878f
 
a1eed6b
1
2
3
4
5
6
7
8
9
10
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{}