mirror of
https://github.com/mitchell/selfpass.git
synced 2025-07-07 03:26:10 +00:00
11 lines
203 B
Go
11 lines
203 B
Go
package main
|
|
|
|
import (
|
|
"github.com/mitchell/selfpass/cli/commands"
|
|
"github.com/mitchell/selfpass/credentials/repositories"
|
|
)
|
|
|
|
func main() {
|
|
commands.Execute(repositories.NewCredentialServiceClient)
|
|
}
|