2025-08-04 08:58:30 +00:00
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
|
|
|
"blockchain/internal/domain/entity"
|
|
|
|
"context"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DataSourceRepository interface {
|
2025-08-04 14:02:01 +00:00
|
|
|
GetSymbols(ctx context.Context) ([]*entity.Symbol, error)
|
2025-08-04 08:58:30 +00:00
|
|
|
}
|