11 lines
193 B
Go
11 lines
193 B
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.intra.yksa.space/gsn/gsn-proxy/internal/pkg/ds"
|
|
)
|
|
|
|
type Service interface {
|
|
GetSatellites(ctx context.Context) ([]ds.Satellite, error)
|
|
}
|