mirror of
https://github.com/holos-run/holos.git
synced 2026-03-21 01:35:02 +00:00
This patch speeds up rendering by storing a copy of helm charts in the holos component directory.
11 lines
388 B
Go
11 lines
388 B
Go
// Package holos defines types for the rest of the system.
|
|
package holos
|
|
|
|
// A PathCueMod is a string representing the filesystem path of a cue module.
|
|
// It is given a unique type so the API is clear.
|
|
type PathCueMod string
|
|
|
|
// A PathComponent is a string representing the filesystem path of a holos component.
|
|
// It is given a unique type so the API is clear.
|
|
type PathComponent string
|