Files
atomctl/templates/templates.go
Rogee 342f205b5e feat(tracing): Implement Jaeger/OpenTracing provider with configuration options
- Added Punycode encoding implementation for cookie handling.
- Introduced serialization for cookie jar with JSON support.
- Created a comprehensive README for the tracing provider, detailing configuration and usage.
- Developed a configuration structure for tracing, including sampler and reporter settings.
- Implemented the provider logic to initialize Jaeger tracer with logging capabilities.
- Ensured graceful shutdown of the tracer on application exit.
2025-09-12 17:28:25 +08:00

22 lines
291 B
Go

package templates
import "embed"
//go:embed project/* project/.*
var Project embed.FS
//go:embed module
var Module embed.FS
//go:embed events
var Events embed.FS
//go:embed jobs
var Jobs embed.FS
//go:embed services
var Services embed.FS
//go:embed providers/*
var Providers embed.FS