forked from security/hakurei
This places configuration files with hardcoded content in /etc to silence test suites expecting them to be present. Signed-off-by: Ophestra <cat@gensokyo.uk>
12 lines
238 B
Go
12 lines
238 B
Go
// Package rosa provides Rosa OS toolchain artifacts and miscellaneous software.
|
|
package rosa
|
|
|
|
import (
|
|
"hakurei.app/internal/pkg"
|
|
)
|
|
|
|
const (
|
|
// kindEtc is the kind of [pkg.Artifact] of cureEtc.
|
|
kindEtc = iota + pkg.KindCustomOffset
|
|
)
|