1package server
2
3import "github.com/labstack/echo/v4"
4
5func (s *Server) handleRoot(e echo.Context) error {
6 return e.String(200, `
7
8 ....-*%%%#####
9 .%#+++****#%%%%%%%%%#+:....
10 .%+++**++++*%%%%.....
11 .%+++*****#%%%%#.. %#%...
12 ***+*****%%%%%... =..
13 *****%%%%.. +=++..
14 %%%%%... .+----==++.
15 .-::----===++
16 .=-:.------==+++
17 +-:::-:----===++..
18 =-::-----:-==+++-.
19 .==*=------==++++.
20 +-:--=++===*=--++.
21 +:::--:=++=----=+..
22 *::::---=+#----=+.
23 =::::----=+#---=+..
24 .::::----==+=--=+..
25 .-::-----==++=-=+..
26 -::-----==++===+..
27 =::-----==++==++
28 +::----:==++=+++
29 :-:----:==+++++.
30 .=:=----=+++++.
31 +=-=====+++..
32 =====++.
33 =++...
34
35
36This is an AT Protocol Personal Data Server (aka, an atproto PDS)
37
38Code: https://github.com/haileyok/cocoon
39Version: `+s.config.Version+"\n")
40}