14 lines
212 B
Go
14 lines
212 B
Go
package anontest
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
type FakeAnonymousSessionService struct {
|
|
}
|
|
|
|
func (f *FakeAnonymousSessionService) TagDevice(ctx context.Context, httpReq *http.Request) error {
|
|
return nil
|
|
}
|