This repository has been archived on 2021-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
my-bloody-hetzner-sb-notifier/instrumentation/instrumentation.go

12 lines
180 B
Go

package instrumentation
type Instrumenter struct {
projectID string
}
func NewInstrumenter(projectID string) *Instrumenter {
return &Instrumenter{
projectID: projectID,
}
}