mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-28 22:39:05 +08:00
9 lines
156 B
Go
9 lines
156 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
// GRCHandler contains fields shared among the different handlers
|
|
type GRCHandler struct {
|
|
AssetsFS http.FileSystem
|
|
}
|