This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
forked from gopasspw/gopass
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finish first draft of the ARCHITECTURE.md (gopasspw#1787)
RELEASE_NOTES=[ENHANCEMENT] Add ARCHITECTURE.md Fixes gopasspw#1779 Signed-off-by: Dominik Schulz <[email protected]>
- Loading branch information
1 parent
203806f
commit 2b24db6
Showing
5 changed files
with
142 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
digraph G { | ||
gopass [shape=box,style=filled,color=".2 .2 .6",peripheries=2]; | ||
gopass -> action; | ||
action [label="internal/action"]; | ||
action -> root; | ||
root [label="internal/store/root"]; | ||
root -> leaf; | ||
root -> tree; | ||
tree [label="internal/tree"]; | ||
leaf [label="internal/store/leaf"]; | ||
leaf -> gitfs; | ||
gitfs [label="internal/backend/storage/gitfs"]; | ||
gitfs -> gitcli; | ||
gitcli [label="git binary",shape=Mdiamond]; | ||
leaf -> gpg; | ||
gpg [label="internal/backend/crypto/gpg/cli"]; | ||
leaf -> age [style="dotted"]; | ||
age [label="internal/backend/crypto/age"]; | ||
gpg -> gpgcli; | ||
gpgcli [label="gpg/gpg2 binary",shape=Mdiamond]; | ||
leaf -> secret; | ||
secret [label="pkg/gopass/secrets"]; | ||
secret -> root; | ||
jsonapi [label="gopass-jsonapi",shape=box]; | ||
jsonapi -> api; | ||
api [label="pkg/gopass/api"]; | ||
api -> root; | ||
api -> config; | ||
gopass -> config; | ||
config [label="internal/config"]; | ||
summon -> api; | ||
summon [label="gopass-summon-provider",shape=box]; | ||
hibp -> api; | ||
hibp [label="gopass-hibp",shape=box]; | ||
hibp -> pkghibp; | ||
pkghibp [label="pkg/hibp"]; | ||
gitcreds -> api; | ||
gitcreds [label="git-credential-gopass",shape=box]; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters