| 19 | ) |
| 20 | |
| 21 | type Local struct { |
| 22 | PrefixCommand []string |
| 23 | Database string |
| 24 | Username string |
| 25 | Password string |
| 26 | ContainerName string |
| 27 | } |
| 28 | |
| 29 | func NewLocal(command []string, containerName, username, password, database string) *Local { |
| 30 | return &Local{PrefixCommand: command, ContainerName: containerName, Username: username, Password: password, Database: database} |
nothing calls this directly
no outgoing calls
no test coverage detected