Struct generation complete, pipes to stdout

* Database driver config & flag complete
* Table flag complete, will use all tables if non specified
This commit is contained in:
Patrick O'brien 2016-02-23 18:27:32 +10:00
commit b43f9c63d8
16 changed files with 419 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package dbdrivers
import "testing"
func TestFlow(t *testing.T) {
// driver := NewPostgresDriver("test", "pass", "dbname", "localhost", 3456)
// defer driver.Close()
// driver.GetTableInfo()
}