mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
12 lines
221 B
Go
12 lines
221 B
Go
package interfaces
|
|
|
|
import (
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
type DatabaseRegistryService interface {
|
|
Start()
|
|
CheckStatus()
|
|
GetDatabaseService(id primitive.ObjectID) (res DatabaseService, err error)
|
|
}
|