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
Raw Normal View History

package instrumentation
2018-10-25 21:18:45 +02:00
type Instrumenter struct {
projectID string
}
2018-10-25 21:18:45 +02:00
func NewInstrumenter(projectID string) *Instrumenter {
return &Instrumenter{
2018-10-25 21:18:45 +02:00
projectID: projectID,
}
2018-10-25 21:18:45 +02:00
}