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
Mahmoud Rahbar Azad 5d5c779b43
some clean up
added Makefile
2018-10-25 21:18:45 +02:00

11 lines
180 B
Go

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