2023-01-07 21:03:51 +05:30
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-01-19 20:34:28 +05:30
|
|
|
"github.com/ProjectSegfault/publapi/pages"
|
|
|
|
"github.com/gofiber/fiber/v2"
|
2023-01-21 22:19:17 +05:30
|
|
|
"os"
|
2023-01-07 21:03:51 +05:30
|
|
|
)
|
|
|
|
|
2023-01-07 21:32:06 +05:30
|
|
|
// publapi is a simple API for Project Segfault's public shared server (pubnix).
|
2023-01-07 21:03:51 +05:30
|
|
|
func main() {
|
|
|
|
app := fiber.New()
|
|
|
|
|
|
|
|
app.Get("/", func(c *fiber.Ctx) error {
|
|
|
|
return c.JSON(fiber.Map{
|
|
|
|
"message": "welcome to publapi",
|
|
|
|
"status": c.Response().StatusCode(),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-01-19 20:42:46 +05:30
|
|
|
app.Get("/users", pages.UsersPage)
|
2023-01-07 21:03:51 +05:30
|
|
|
|
|
|
|
app.Post("/signup", pages.SignupPage)
|
|
|
|
|
2023-01-07 22:15:42 +05:30
|
|
|
app.Listen(GetPort())
|
2023-01-07 21:03:51 +05:30
|
|
|
}
|
2023-01-07 22:14:25 +05:30
|
|
|
|
|
|
|
// GetPort returns the port to listen on
|
|
|
|
func GetPort() string {
|
|
|
|
port := os.Getenv("PUBLAPI_PORT")
|
|
|
|
if port == "" {
|
|
|
|
port = "3000"
|
|
|
|
}
|
|
|
|
return ":" + port
|
|
|
|
}
|