mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-10 14:55:41 +01:00
11 lines
192 B
Go
11 lines
192 B
Go
package bluesky
|
|
|
|
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")
|
|
}
|