mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-10 06:35:41 +01:00
Syndicate is working! Instagra & Pixelfed demonstrated with the new post attached. Lots of TODOs, but functional enough :)
15 lines
322 B
Go
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{}),
|
|
}
|
|
}
|