diff --git a/.github/README_ko.md b/.github/README_ko.md index 5fab2811..53fb4a31 100644 --- a/.github/README_ko.md +++ b/.github/README_ko.md @@ -51,7 +51,7 @@

- FiberExpress에서 영감을 받고, Go를 위한 가장 빠른 HTTP 엔진인 Fasthttp를 토대로 만들어진 web framework 입니다. 비 메모리 할당성능을 고려한 빠른 개발을 위해 손쉽게 사용되도록 설계되었습니다. + FiberExpress에서 영감을 받고, Go를 위한 가장 빠른 HTTP 엔진인 Fasthttp를 토대로 만들어진 웹 프레임워크 입니다. 비 메모리 할당성능을 고려한 빠른 개발을 위해 손쉽게 사용되도록 설계되었습니다.

## ⚡️ 빠른 시작 @@ -127,6 +127,9 @@ func main() { // => http://localhost:3000/prefix/js/script.js // => http://localhost:3000/prefix/css/style.css + app.Static("*", "./public/index.html") + // => http://localhost:3000/anything/returns/the/index/file + app.Listen(3000) } ```