| 5 | ) |
| 6 | |
| 7 | type Switcher interface { |
| 8 | // Description read model |
| 9 | Description() string |
| 10 | |
| 11 | Create() (tables []string, sqls []string, err error) |
| 12 | Delete() error |
| 13 | Detach() error |
| 14 | Attach() error |
| 15 | } |
| 16 | |
| 17 | type SwitcherParams struct { |
| 18 | // common |