messing around a bit

This commit is contained in:
tsmethurst 2021-02-27 22:57:50 +01:00
commit fbf52fe84b
8 changed files with 124 additions and 0 deletions

11
internal/api/api.go Normal file
View file

@ -0,0 +1,11 @@
package api
// API is the API exposed to the outside world for access by front-ends; this is distinct from the federation API
type API interface {
}
// api implements Api interface
type api struct {
}