selfpass/cmd/spc/main.go
mitchell c5ae0b4ddc Implemented all but update from cli client to server;
solidified encryption;
setup deployment mechanism for GCP
2019-05-27 18:16:50 -07:00

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)
}