all repos — homestead @ 82424b77fba708e4450c1a0cec5b0c7967b13d7b

Code for my website

domain/web/server/app.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
package server

import (
	"net/http"
)

type App struct {
	Domain         string
	Domains        []string
	WildcardDomain string
	Handler        http.Handler
	Shutdown       func()
}