7 lines
91 B
Go
7 lines
91 B
Go
package schema
|
|
|
|
type Schema struct {
|
|
Tables map[string]Table
|
|
Indexes map[string]Index
|
|
}
|