all repos — underbbs @ 678e5e62584a2edc9f909c0b02247fa7ba95f71c

decentralized social media client

adapter/adapter.go (raw)

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

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

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