badguardhome/internal/storage/table.go
2022-06-03 10:31:31 -05:00

9 lines
90 B
Go

package storage
type Table struct {
columns map[string]Column
}
type Column struct {
}