mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
6 lines
66 B
Go
6 lines
66 B
Go
|
package repository
|
||
|
|
||
|
type Repository interface {
|
||
|
Health() error
|
||
|
}
|