Cloud Migrations: Create new service for cloud migrations (#80949)

* introduce feature toggle

* create base service structure

* fix sample metric

* register metrics

* add to codeowners

* separate api dtos from service models

* remove leading newline
This commit is contained in:
Michael Mandrus
2024-01-22 11:09:08 -05:00
committed by GitHub
parent 07aa173939
commit cf13cb9f70
18 changed files with 287 additions and 0 deletions
@@ -0,0 +1,12 @@
package api
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_OnlyEnabledForGrafanaAdmi(t *testing.T) {
// TODO: implement
assert.True(t, true)
}