PostgresStore implements CredentialStore using PostgreSQL
| 34 | |
| 35 | // PostgresStore implements CredentialStore using PostgreSQL |
| 36 | type PostgresStore struct { |
| 37 | db *sql.DB |
| 38 | configured bool |
| 39 | } |
| 40 | |
| 41 | func (store *PostgresStore) GetName() credential.CredentialStoreTypeName { |
| 42 | return credential.StoreTypePostgres |
nothing calls this directly
no outgoing calls
no test coverage detected