add package synopsis

This commit is contained in:
dre 2021-07-12 18:50:08 +08:00
parent ea33aba3c2
commit a636fc9277
3 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,5 @@
// Package fileserver implements a gemini handler function to serve files with optional auto
// indexing for directory listings.
package fileserver package fileserver
import ( import (

View file

@ -1,3 +1,5 @@
// Package gemini implements the protocol for use with a file server, certificate generation and
// facilities for interceptors and middlewares.
package gemini package gemini
import ( import (

3
middleware/doc.go Normal file
View file

@ -0,0 +1,3 @@
// Package middleware add few reusable middleware packages that work together with the gemini
// package.
package middleware