package rc import ( "net/http" "go.stargrave.org/godlighty" ) func init() { host := "www.cryptoanarchy.ru" godlighty.Hosts[host] = &godlighty.HostCfg{ Hooks: []godlighty.Hook{ func(w http.ResponseWriter, r *http.Request) bool { redirect( host, w, r, "//www.cypherpunks.ru/Manifesto-cryptoanarchist.html", http.StatusMovedPermanently, ) return true }, }, } }