mirror of
https://github.com/aykhans/bsky-feedgen.git
synced 2025-05-31 02:50:03 +00:00
14 lines
361 B
Go
14 lines
361 B
Go
package feed
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/bluesky-social/indigo/api/bsky"
|
|
)
|
|
|
|
type Feed interface {
|
|
GetPage(ctx context.Context, userDID string, limit int64, cursor string) (feedPosts []*bsky.FeedDefs_SkeletonFeedPost, newCursor *string, err error)
|
|
GetName(ctx context.Context) string
|
|
Describe(ctx context.Context) bsky.FeedDescribeFeedGenerator_Feed
|
|
}
|