11 lines
178 B
Go
11 lines
178 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"blockchain/internal/domain/entity"
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type DataSourceRepository interface {
|
||
|
GetSymbols(ctx context.Context) ([]entity.Symbol, error)
|
||
|
}
|