// Generated by egon.
// 🚫Edit at your own risk.
package server
import (
"io"
)
func IndexTemplate(w io.Writer, cssPath string, inlineScript string, scripts []string) error {
io.WriteString(w, "
Dispatch")
if cssPath != "" {
io.WriteString(w, "")
}
io.WriteString(w, "")
for _, script := range scripts {
io.WriteString(w, "")
}
io.WriteString(w, "")
return nil
}