tebakaja's picture
feat: crafting stock and national currency proxy
a1eed6b
raw
history blame
246 Bytes
package stock
import "context"
type StockService interface {
StockListsService(ctx context.Context) (ApiResponse, error)
StockPredictionService(ctx context.Context, req PredictionRequest) (ApiResponse, error)
}
type StockServiceImpl struct{}