forked from Silverfish/proton-bridge
12 lines
202 B
Go
12 lines
202 B
Go
package pmapi
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
func (m *manager) SendSimpleMetric(context.Context, string, string, string) error {
|
|
// FIXME(conman): Implement.
|
|
return errors.New("not implemented")
|
|
}
|