- 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.
22 lines
291 B
Go
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
|