2ca9496c04
* chore: update the user-agent we use Part of the check-list at https://github.com/ooni/probe/issues/1369. * chore: set version to 3.9.0 See https://github.com/ooni/probe/issues/1369 * chore: run go generate ./... This is meant to update the bundled CA. We have heard of issues with our bundled CA, but it seems there have been no changes upstream. The website https://curl.se/docs/caextract.html still lists as the last change the one done on Jan 19, 2021, which is the version of the CA that we're currently bundling. For the sake of continuing with the release process, I am going to further investigate the CA once the release is done. This chore is part of https://github.com/ooni/probe/issues/1369.
19 lines
581 B
Go
19 lines
581 B
Go
// Code generated by go generate; DO NOT EDIT.
|
|
// 2021-03-31 16:50:05.487854795 +0200 CEST m=+0.000140777
|
|
|
|
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
|
|
}
|