mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
11 lines
130 B
Go
11 lines
130 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/gotosocial/server/internal/api"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
router := api.NewRouter()
|
||
|
router.Route()
|
||
|
}
|