mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
c8c9850625
* add fiber * disable gin, enable fiber * gradually enabling app setup * change env * add routes * add static * connect template engine * add simple load test * make it executable * add rate limiter * doc * connect get threads controller * clean * add compression middleware * add etag middleware * lint * add recover middleware * check isFromLocal method * connect get thread by id controller * connect create thread controller * connect captcha controller * connect update thread controller * rename file * playing with css * connect gateway controller
20 lines
572 B
Modula-2
20 lines
572 B
Modula-2
module micrach
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/dchest/captcha v0.0.0-20200903113550-03f5f0333e1f
|
|
github.com/disintegration/imaging v1.6.2
|
|
github.com/gin-gonic/gin v1.7.4
|
|
github.com/go-playground/validator/v10 v10.9.0 // indirect
|
|
github.com/gofiber/fiber/v2 v2.31.0
|
|
github.com/gofiber/template v1.6.26
|
|
github.com/jackc/pgtype v1.8.1
|
|
github.com/jackc/pgx/v4 v4.13.0
|
|
github.com/jackc/puddle v1.1.4 // indirect
|
|
github.com/joho/godotenv v1.3.0
|
|
github.com/lib/pq v1.10.3 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/ugorji/go v1.2.6 // indirect
|
|
)
|