11 lines
130 B
Go
11 lines
130 B
Go
package anonymous
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
type Service interface {
|
|
TagDevice(context.Context, *http.Request) error
|
|
}
|