Removed public directory as all front end assets are embedded in the HTML directly
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Steven Polley 2024-02-24 09:09:05 -07:00
parent 13d3c2e77c
commit acd6728c19
2 changed files with 0 additions and 6 deletions

View File

@ -1,3 +0,0 @@
# Public
This directory is publicly accessible from the HTTP server and contains web assets such as images, css and javascript.

View File

@ -7,9 +7,6 @@ import (
func webServer() {
//Public static files
http.Handle("/public/", http.StripPrefix("/public/", http.FileServer(http.Dir("public"))))
// Page Handlers
// Anything that is responsible for the base elements of a viewable web page
http.HandleFunc("/", homePageHandler)