blob: 2614d00abbfdfe7510fc319a95a022799ee57ca7 [file] [log] [blame]
package schema
// Dir is used to represent directories.
type Dir struct{}
// Bank is used to represent the information stored in a bank.
type Bank struct {
Accounts map[string]int64
}