11 lines
128 B
Go
11 lines
128 B
Go
package lsmem
|
|
|
|
type Storage struct {
|
|
CurrentID int
|
|
}
|
|
|
|
func (s *Storage) NextID() int {
|
|
s.CurrentID += 1
|
|
return s.CurrentID
|
|
}
|