* introduce feature toggle * create base service structure * fix sample metric * register metrics * add to codeowners * separate api dtos from service models * remove leading newline
13 lines
171 B
Go
13 lines
171 B
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_OnlyEnabledForGrafanaAdmi(t *testing.T) {
|
|
// TODO: implement
|
|
assert.True(t, true)
|
|
}
|