Files
galaxy-game/client/connector.go
T
2026-03-10 17:01:47 +02:00

10 lines
126 B
Go

package client
import (
"galaxy/model/report"
)
type Connector interface {
Turn(uint, func(report.Report, error)) error
}