2026-05-26 16:32:55 +03:00
|
|
|
package domains
|
|
|
|
|
|
2026-05-26 18:58:50 +03:00
|
|
|
import "context"
|
|
|
|
|
|
2026-05-26 16:32:55 +03:00
|
|
|
type Domain interface {
|
2026-05-26 18:58:50 +03:00
|
|
|
ConnectDependencies(ctx context.Context) error
|
|
|
|
|
Start(ctx context.Context) error
|
2026-05-26 16:32:55 +03:00
|
|
|
}
|