15 lines
180 B
Go
15 lines
180 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
_ "github.com/lib/pq"
|
|
r "github.com/yourusername/go-sqlc-jwt/routes"
|
|
)
|
|
|
|
func main() {
|
|
router := r.MainRouter()
|
|
log.Fatal(router.Run(":8080"))
|
|
}
|
|
|