Files
gostock/internal/logic/strategy/rule/up_date.go
yanweidong e17421a2f3 deving
2026-01-27 02:09:44 +08:00

22 lines
358 B
Go

package rule
import (
"git.apinb.com/quant/gostock/internal/logic/types"
)
type UpDate struct {
Key string
Name string
}
func NewUpDate() *UpDate {
return &UpDate{
Key: "UpDate",
Name: "上市时间",
}
}
func (r *UpDate) Run(in string) *types.RuleResult {
return &types.RuleResult{Key: r.Key, Name: r.Name, Score: 0, Desc: "暂不计算"}
}