- Remove exported interfaces unused locally - Define interfaces to accept arguments - Return concrete types, not interfaces
17 lines
340 B
Go
17 lines
340 B
Go
package httpproxy
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/qdm12/gluetun/internal/configuration/settings"
|
|
)
|
|
|
|
func (l *Loop) GetSettings() (settings settings.HTTPProxy) {
|
|
return l.state.GetSettings()
|
|
}
|
|
|
|
func (l *Loop) SetSettings(ctx context.Context, settings settings.HTTPProxy) (
|
|
outcome string) {
|
|
return l.state.SetSettings(ctx, settings)
|
|
}
|