wavefrontHQ / wavefront-sdk-go

Wavefront Core Go SDK
Apache License 2.0
4 stars 21 forks source link

move `formatError` constant, and eliminate `stringError` type, which seems unneccessary #177

Open LukeWinikates opened 10 months ago

LukeWinikates commented 10 months ago
const formatError stringError = "error: invalid Format or points"

type stringError string

func (e stringError) Error() string {
    return string(e)
}