Files
ezbookkeeping/pkg/requestid/request_id_generator.go
T
2020-10-17 22:54:13 +08:00

8 lines
172 B
Go

package requestid
type RequestIdGenerator interface {
GenerateRequestId(clientIpAddr string) string
GetCurrentServerUniqId() uint16
GetCurrentInstanceUniqId() uint16
}