Bukdu, how to display favicon.ico

@wookyoung, thank you. It works great.

I created a folder public with favicon.ico and changed the routes as follows:

routes() do
  get("/", WebController, index)
  get("/agingreport", WebController, aging_report)
  get("/gl", WebController, gl)
  plug(Plug.Static, at="/", from=normpath(@__DIR__, "public"))
end

Output:

Bukdu Listening on 0.0.0.0:8000
INFO: GET     WebController       index           200 /
INFO: GET     StaticController    readfile        200 /favicon.ico
INFO: GET     WebController       aging_report    200 /agingreport