diff options
Diffstat (limited to 'vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go')
-rw-r--r-- | vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go index 8227c998d..4ba7327ec 100644 --- a/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_pkg_toot_extends.go @@ -4,6 +4,7 @@ package streams import ( typeemoji "github.com/superseriousbusiness/activity/streams/impl/toot/type_emoji" + typehashtag "github.com/superseriousbusiness/activity/streams/impl/toot/type_hashtag" typeidentityproof "github.com/superseriousbusiness/activity/streams/impl/toot/type_identityproof" vocab "github.com/superseriousbusiness/activity/streams/vocab" ) @@ -13,6 +14,11 @@ func TootTootEmojiExtends(other vocab.Type) bool { return typeemoji.TootEmojiExtends(other) } +// TootTootHashtagExtends returns true if Hashtag extends from the other's type. +func TootTootHashtagExtends(other vocab.Type) bool { + return typehashtag.TootHashtagExtends(other) +} + // TootTootIdentityProofExtends returns true if IdentityProof extends from the // other's type. func TootTootIdentityProofExtends(other vocab.Type) bool { |