some clean up
added Makefile
This commit is contained in:
parent
8f1463b2ef
commit
5d5c779b43
8 changed files with 98 additions and 43 deletions
|
@ -1,11 +1,11 @@
|
|||
package instrumentation
|
||||
|
||||
type Instrumenter struct{
|
||||
projectId string
|
||||
type Instrumenter struct {
|
||||
projectID string
|
||||
}
|
||||
|
||||
func NewInstrumenter(projectId string) *Instrumenter {
|
||||
func NewInstrumenter(projectID string) *Instrumenter {
|
||||
return &Instrumenter{
|
||||
projectId: projectId,
|
||||
projectID: projectID,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue