mirror of
https://github.com/fumiama/paper-manager.git
synced 2026-06-04 23:40:24 +08:00
11 lines
193 B
Go
11 lines
193 B
Go
package frontend
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/fumiama/paper-manager/frontend/vben"
|
|
)
|
|
|
|
// StaticHandler serves contents in frontend
|
|
var StaticHandler = http.FileServer(vben.Distribution)
|