21 lines
513 B
Plaintext
21 lines
513 B
Plaintext
|
|
# Main entry point for provisioning KCL module
|
||
|
|
# This file exports all the schemas and configurations needed for provisioning
|
||
|
|
|
||
|
|
# Import and re-export core schemas
|
||
|
|
import .settings
|
||
|
|
import .defaults
|
||
|
|
import .dependencies
|
||
|
|
import .server
|
||
|
|
import .cluster
|
||
|
|
import .batch
|
||
|
|
import .workflows
|
||
|
|
import .version
|
||
|
|
|
||
|
|
# Export Settings schema for external use
|
||
|
|
Settings = settings.Settings
|
||
|
|
|
||
|
|
# Export other common schemas
|
||
|
|
Defaults = defaults.Defaults
|
||
|
|
Server = server.Server
|
||
|
|
Cluster = cluster.Cluster
|
||
|
|
BatchWorkflow = batch.BatchWorkflow
|