mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-15 19:53:02 -06:00
start implementing db interface
This commit is contained in:
parent
c879e1b0b3
commit
d8e8d44d47
9 changed files with 496 additions and 18 deletions
|
|
@ -20,9 +20,16 @@
|
|||
package ap
|
||||
|
||||
import (
|
||||
"github.com/go-fed/activity/pub"
|
||||
// "github.com/go-fed/activity/pub"
|
||||
)
|
||||
|
||||
func main() {
|
||||
pub.NewFederatingActor()
|
||||
// Service is an activityPub service that uses go-fed to provide federation capabilities
|
||||
type Service interface {
|
||||
}
|
||||
|
||||
type service struct {
|
||||
}
|
||||
|
||||
// NewService returns an activityPub Service
|
||||
func NewService() {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue