diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-15 15:50:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-15 15:50:56 +0100 |
commit | 157e10f2e1d49748f62e210cadc088ecae9f3dfc (patch) | |
tree | a0740cc0b8b82fac54e9e863e76f7a7ad85cd672 /identity | |
parent | 02548c0e8f96a5c08efe46bd5f71f97fdd211de3 (diff) | |
parent | e231b6e83956635e5e4923c064cab19e6730150a (diff) | |
download | git-bug-157e10f2e1d49748f62e210cadc088ecae9f3dfc.tar.gz |
Merge pull request #328 from MichaelMure/bridge-refactor
bridges: pass the context to Init for when a client build process need it
Diffstat (limited to 'identity')
-rw-r--r-- | identity/bare.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/identity/bare.go b/identity/bare.go index a02ec790..58c278be 100644 --- a/identity/bare.go +++ b/identity/bare.go @@ -21,6 +21,8 @@ var _ entity.Interface = &Bare{} // // in particular, this identity is designed to be compatible with the handling of // identities in the early version of git-bug. +// Deprecated: legacy identity for compat, might make sense to ditch entirely for +// simplicity but that would be a breaking change. type Bare struct { id entity.Id name string |