9 lines
90 B
Go
9 lines
90 B
Go
package storage
|
|
|
|
type Table struct {
|
|
columns map[string]Column
|
|
}
|
|
|
|
type Column struct {
|
|
}
|