This repository has been archived on 2022-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
activitypub/followers.go

10 lines
176 B
Go
Raw Normal View History

2017-09-11 20:45:57 +00:00
package activitypub
2017-09-16 17:53:11 +00:00
type (
2018-03-25 18:54:51 +00:00
// FollowersCollection is a collection of followers
FollowersCollection = Followers
2017-09-11 20:45:57 +00:00
2018-03-25 18:54:51 +00:00
// Followers is a Collection type
Followers = Collection
2017-09-16 17:53:11 +00:00
)