forked from mirrors/gotosocial
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()
|
||
|
}
|