12 lines
249 B
Go
12 lines
249 B
Go
package spa_handler
|
|
|
|
import "embed"
|
|
|
|
type HandlerOptions struct {
|
|
Files embed.FS
|
|
IndexPath string
|
|
ClientVersion string
|
|
ActivateLiveReloading bool
|
|
AdditionalMimeTypeMapping map[string]string
|
|
}
|