sandbox/drawings/appsec_achitecture/repository/postgres/postgres.puml

13 lines
No EOL
268 B
Text

@startuml pustgres_repo_base
package Repo {
package Postgres {
class PostgresRepo {
+ Connect(ctx context.Context, connectionString string) error
+ Ping(ctx context.Context) error
- db *sql.DB
}
}
}
@enduml