package brass

type Data[DataType any] struct {
	Sessions   map[string]string
	LoginCodes map[string]map[string]bool
	Data       DataType
}
