You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package repository
|
|
|
|
// Repository 数据访问层接口定义
|
|
|
|
// StockRepository 股票数据仓库
|
|
type StockRepository interface {
|
|
// TODO: 定义股票相关数据访问方法
|
|
}
|
|
|
|
// FuturesRepository 期货数据仓库
|
|
type FuturesRepository interface {
|
|
// TODO: 定义期货相关数据访问方法
|
|
}
|