mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-12 15:09:13 -06:00
12 lines
215 B
Go
12 lines
215 B
Go
package metrics
|
|
|
|
// Option configures an assets option.
|
|
type Option func(*metrics)
|
|
|
|
// WithToken returns an option to set a token.
|
|
func WithToken(val string) Option {
|
|
return func(m *metrics) {
|
|
m.token = val
|
|
}
|
|
}
|