some clean up

added Makefile
This commit is contained in:
Mahmoud Rahbar Azad 2018-10-25 21:18:45 +02:00
parent 8f1463b2ef
commit 5d5c779b43
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 7DBBD39E2BFEB784
8 changed files with 98 additions and 43 deletions

View file

@ -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,
}
}
}