23 lines
374 B
Plaintext
23 lines
374 B
Plaintext
|
|
#!/usr/bin/env nu
|
||
|
|
|
||
|
|
# Service Management Module
|
||
|
|
# Exports all service management functionality
|
||
|
|
|
||
|
|
# Core service management
|
||
|
|
export use manager.nu *
|
||
|
|
|
||
|
|
# Service lifecycle
|
||
|
|
export use lifecycle.nu *
|
||
|
|
|
||
|
|
# Health checks
|
||
|
|
export use health.nu *
|
||
|
|
|
||
|
|
# Pre-flight checks
|
||
|
|
export use preflight.nu *
|
||
|
|
|
||
|
|
# Dependency resolution
|
||
|
|
export use dependencies.nu *
|
||
|
|
|
||
|
|
# CLI commands
|
||
|
|
export use commands.nu *
|