mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
8 lines
172 B
Go
8 lines
172 B
Go
package requestid
|
|
|
|
type RequestIdGenerator interface {
|
|
GenerateRequestId(clientIpAddr string) string
|
|
GetCurrentServerUniqId() uint16
|
|
GetCurrentInstanceUniqId() uint16
|
|
}
|