Skip to content

Commit ad6bf23

Browse files
authored
chore: adds directory structure for engine and experimental packages (#234)
This adds placeholder directories for the `engine` and `experimental` packages. This structure is intended to support future development and organization of code related to the engine's runtime and experimental features.
1 parent a7102f0 commit ad6bf23

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

engine/cld/runtime/runtime.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package runtime is the runtime for the CLD engine. It is responsible for providing methods to load the Environment
2+
// and execute changesets using a predefined folder based approach called 'domains'.
3+
4+
package runtime

engine/test/runtime/runtime.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package runtime is the runtime for the test engine. It is responsible for providing methods to load the Environment
2+
// and execute changesets for unit and integration tests.
3+
4+
package runtime

experimental/experimental.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package experimental is used to experiment with new features and ideas. Any code in this package is not guaranteed to be stable
2+
// or working, and may be change or removed at any time.
3+
4+
package experimental

0 commit comments

Comments
 (0)