File size: 251 Bytes
542878f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
package crypto

import "context"

type CryptoService interface {
	CryptoListsService(ctx context.Context) (ApiResponse, error)
	CryptoPredictionService(ctx context.Context, req PredictionRequest) (ApiResponse, error)
}

type CryptoServiceImpl struct{}