mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-28 22:32:24 -05:00
12 lines
205 B
Go
12 lines
205 B
Go
|
|
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 {
|
||
|
|
|
||
|
|
}
|