mirror of
https://github.com/mitchell/selfpass.git
synced 2026-01-07 13:07:23 +00:00
10 lines
203 B
Go
10 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)
|
|
}
|