[chore] bump activity dependency -> v1.6.0-gts (#2599)

This commit is contained in:
tobi 2024-02-02 14:06:09 +01:00 committed by GitHub
commit 8692cc1f36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 1512 additions and 9 deletions

View file

@ -5,6 +5,7 @@ package streams
import (
propertyaccuracy "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_accuracy"
propertyactor "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_actor"
propertyalsoknownas "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_alsoknownas"
propertyaltitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_altitude"
propertyanyof "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_anyof"
propertyattachment "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_attachment"
@ -44,6 +45,7 @@ import (
propertylongitude "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_longitude"
propertymanuallyapprovesfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_manuallyapprovesfollowers"
propertymediatype "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_mediatype"
propertymovedto "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_movedto"
propertyname "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_name"
propertynext "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_next"
propertyobject "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_object"
@ -165,6 +167,7 @@ func init() {
mgr = &Manager{}
propertyaccuracy.SetManager(mgr)
propertyactor.SetManager(mgr)
propertyalsoknownas.SetManager(mgr)
propertyaltitude.SetManager(mgr)
propertyanyof.SetManager(mgr)
propertyattachment.SetManager(mgr)
@ -204,6 +207,7 @@ func init() {
propertylongitude.SetManager(mgr)
propertymanuallyapprovesfollowers.SetManager(mgr)
propertymediatype.SetManager(mgr)
propertymovedto.SetManager(mgr)
propertyname.SetManager(mgr)
propertynext.SetManager(mgr)
propertyobject.SetManager(mgr)