a88d2f35a8
This diff implements part of the release checklist at https://github.com/ooni/probe/issues/1439. The plan is to bless a beta release and use it for further testing on Android devices. Afterward, we need to apply some extra changes to the `cli` (including https://github.com/ooni/probe-cli/pull/314 and https://github.com/ooni/probe-cli/pull/312). Finally, we will bless a full 3.10.0 release.
19 lines
581 B
Go
19 lines
581 B
Go
// Code generated by go generate; DO NOT EDIT.
|
|
// 2021-04-26 14:35:20.359406685 +0200 CEST m=+0.000143603
|
|
|
|
package ooapi
|
|
|
|
//go:generate go run ./internal/generator -file cloners.go
|
|
|
|
// clonerForPsiphonConfigAPI represents any type exposing a method
|
|
// like simplePsiphonConfigAPI.WithToken.
|
|
type clonerForPsiphonConfigAPI interface {
|
|
WithToken(token string) callerForPsiphonConfigAPI
|
|
}
|
|
|
|
// clonerForTorTargetsAPI represents any type exposing a method
|
|
// like simpleTorTargetsAPI.WithToken.
|
|
type clonerForTorTargetsAPI interface {
|
|
WithToken(token string) callerForTorTargetsAPI
|
|
}
|