1
0
Fork 0
mirror of https://git.sr.ht/~adnano/go-gemini synced 2024-05-06 08:46:15 +02:00
go-gemini/gemini.go

25 lines
558 B
Go
Raw Permalink Normal View History

2020-10-24 21:15:32 +02:00
package gemini
2020-09-26 01:09:49 +02:00
2020-09-26 22:52:14 +02:00
import (
2020-10-14 02:10:04 +02:00
"errors"
2021-02-24 20:28:47 +01:00
"mime"
2020-09-26 22:52:14 +02:00
)
func init() {
// Add Gemini mime types
mime.AddExtensionType(".gmi", "text/gemini")
mime.AddExtensionType(".gemini", "text/gemini")
}
2020-10-14 02:10:04 +02:00
// Errors.
var (
ErrInvalidRequest = errors.New("gemini: invalid request")
2020-11-05 21:27:12 +01:00
ErrInvalidResponse = errors.New("gemini: invalid response")
// ErrBodyNotAllowed is returned by ResponseWriter.Write calls
// when the response status code does not permit a body.
ErrBodyNotAllowed = errors.New("gemini: response status code does not allow body")
2020-10-14 02:10:04 +02:00
)
2021-03-20 17:27:20 +01:00
var crlf = []byte("\r\n")