mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-06-29 16:22:46 +02:00
6 lines
96 B
Go
6 lines
96 B
Go
package sequence
|
|
|
|
type Sequencer interface {
|
|
NextFileId(count uint64) uint64
|
|
SetMax(uint64)
|
|
}
|