package main const ( _ uint64 = iota rootQidPath usersQidPath sessionsQidPath ) var nextQidPath uint64 = 99 func NextQidPath() uint64 { p := nextQidPath nextQidPath++ return p }