diff options
Diffstat (limited to 'vendor/github.com/superseriousbusiness/activity/streams/gen_init.go')
-rw-r--r-- | vendor/github.com/superseriousbusiness/activity/streams/gen_init.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go b/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go index d57db75a2..334fdfe5f 100644 --- a/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go +++ b/vendor/github.com/superseriousbusiness/activity/streams/gen_init.go @@ -20,6 +20,7 @@ import ( propertydeleted "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted" propertydescribes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes" propertyduration "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration" + propertyendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints" propertyendtime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime" propertyfirst "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first" propertyfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers" @@ -61,6 +62,7 @@ import ( propertyreplies "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies" propertyresult "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result" propertysensitive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive" + propertysharedinbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox" propertyshares "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares" propertysource "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source" propertystartindex "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex" @@ -91,6 +93,7 @@ import ( typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete" typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike" typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document" + typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints" typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event" typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag" typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow" @@ -199,6 +202,7 @@ func init() { propertydeleted.SetManager(mgr) propertydescribes.SetManager(mgr) propertyduration.SetManager(mgr) + propertyendpoints.SetManager(mgr) propertyendtime.SetManager(mgr) propertyfirst.SetManager(mgr) propertyfollowers.SetManager(mgr) @@ -240,6 +244,7 @@ func init() { propertyreplies.SetManager(mgr) propertyresult.SetManager(mgr) propertysensitive.SetManager(mgr) + propertysharedinbox.SetManager(mgr) propertyshares.SetManager(mgr) propertysource.SetManager(mgr) propertystartindex.SetManager(mgr) @@ -270,6 +275,7 @@ func init() { typedelete.SetManager(mgr) typedislike.SetManager(mgr) typedocument.SetManager(mgr) + typeendpoints.SetManager(mgr) typeevent.SetManager(mgr) typeflag.SetManager(mgr) typefollow.SetManager(mgr) @@ -361,6 +367,7 @@ func init() { typedelete.SetTypePropertyConstructor(NewJSONLDTypeProperty) typedislike.SetTypePropertyConstructor(NewJSONLDTypeProperty) typedocument.SetTypePropertyConstructor(NewJSONLDTypeProperty) + typeendpoints.SetTypePropertyConstructor(NewJSONLDTypeProperty) typeevent.SetTypePropertyConstructor(NewJSONLDTypeProperty) typeflag.SetTypePropertyConstructor(NewJSONLDTypeProperty) typefollow.SetTypePropertyConstructor(NewJSONLDTypeProperty) |