Fiber Template 사용하기Springboot처럼 Fiber로 백엔드를 개발하고, 화면은 프론트엔드 프레임워크를 사용하거나 템플릿 엔진을 사용한다. 난 회사에서 Springboot + Thymeleaf로 개발하는데, Fiber에서는 Html을 템플릿 엔진으로 사용할 수 있다. Fiber에서 제공하는 템플릿 엔진은htmlaceamberdjangohandlebarsjetmustachepug이렇게 8가지 이다. 난 전회사에서 사용했었던 html을 템플릿으로 사용하고, 포스팅을 작성했다. - 사용법package mainimport ( "github.com/gofiber/fiber/v2" "github.com/gofiber/template/html")func main() { // Initialize sta..