Files
coin/internal/logic/run.go

8 lines
95 B
Go
Raw Normal View History

2026-05-10 23:23:38 +08:00
package logic
import "context"
func Run(ctx context.Context) error {
return spotTick(ctx)
}