mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-10 10:45:41 +01:00
Syndicate is working! Instagra & Pixelfed demonstrated with the new post attached. Lots of TODOs, but functional enough :)
11 lines
191 B
Go
11 lines
191 B
Go
package medium
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/by-jp/www.byjp.me/tools/syndicate/shared"
|
|
)
|
|
|
|
func (s *service) Post(p shared.Post) (string, error) {
|
|
return "", fmt.Errorf("not implemented")
|
|
}
|