9 lines
127 B
Go
9 lines
127 B
Go
package media
|
|
|
|
import "context"
|
|
|
|
type Gateway interface {
|
|
Start(ctx context.Context) error
|
|
Stop(ctx context.Context) error
|
|
}
|