www.byjp.me/tools/syndicate/backfeeder/backfeeder.go
JP Hastings-Spital c135910850 Working pixelfed & insta posting
Syndicate is working! Instagra & Pixelfed demonstrated with the new post attached.

Lots of TODOs, but functional enough :)
2023-11-12 07:43:08 +00:00

15 lines
322 B
Go

package backfeeder
import "github.com/by-jp/www.byjp.me/tools/syndicate/shared"
type backfeeder struct {
services map[string]shared.Service
done map[string]struct{}
}
func New(services map[string]shared.Service) *backfeeder {
return &backfeeder{
services: services,
done: make(map[string]struct{}),
}
}