all repos — underbbs @ 557b87b700e1791b6a0282d81eab183decf59968

decentralized social media client

adapter/adapter.go (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package adapter

import (
	. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
)

type Adapter interface {
	Init(Settings, chan SocketData) error
	Name() string
	Subscribe(string) []error
	Fetch(string, []string) error
	Do(string) error
	DefaultSubscriptionFilter() string
}