8 lines
202 B
Go
Raw Normal View History

2025-02-08 15:17:34 -06:00
package common
// ConfigurablePackageManager defines methods for setting configuration options.
type ConfigurableUserManager interface {
SetUseAuth(useAuth bool)
SetAuthCommand(authCommand string)
}