mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-18 20:54:20 +01:00
8 lines
111 B
Go
8 lines
111 B
Go
package ports
|
|
|
|
import "context"
|
|
|
|
type Unlocker interface {
|
|
GetPassword(ctx context.Context) (string, error)
|
|
}
|