* Restructure cloudmigation service * Adjust codewoners and wire * Comment out unused metrics
10 lines
176 B
Go
10 lines
176 B
Go
package cloudmigration
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Service interface {
|
|
MigrateDatasources(context.Context, *MigrateDatasourcesRequest) (*MigrateDatasourcesResponse, error)
|
|
}
|