start implementing db interface

This commit is contained in:
tsmethurst
2021-03-02 18:26:30 +01:00
parent c879e1b0b3
commit d8e8d44d47
9 changed files with 496 additions and 18 deletions

View File

@ -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() {
}