Add core packages, configuration system, and initial application structure

This commit is contained in:
2025-08-21 11:04:03 +01:00
parent b8db587d7b
commit ecaf52b98f
18 changed files with 12889 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// Package examples is an embedded jsonl format of a collection of events
// intended to be used to test an event codec.
package examples
import (
_ "embed"
)
//go:embed out.jsonl
var Cache []byte