package budgeteer // ID is an implementation of a UUID type ID [16]byte // IDGenerator generates new IDs type IDGenerator interface { New() string }