SchemaReader - Structure for SchemaReader
| 20 | |
| 21 | // SchemaReader - Structure for SchemaReader |
| 22 | type SchemaReader struct { |
| 23 | database *db.Postgres |
| 24 | // options |
| 25 | txOptions pgx.TxOptions |
| 26 | } |
| 27 | |
| 28 | // NewSchemaReader - Creates a new SchemaReader |
| 29 | func NewSchemaReader(database *db.Postgres) *SchemaReader { |
nothing calls this directly
no outgoing calls
no test coverage detected