mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
14 lines
291 B
Go
14 lines
291 B
Go
package content
|
|
|
|
// Status status type SiteContent respnses
|
|
type Status int
|
|
|
|
const (
|
|
// StatusOk we found content
|
|
StatusOk Status = 200
|
|
// StatusForbidden we found content but you mst not access it
|
|
StatusForbidden = 403
|
|
// StatusNotFound we did not find content
|
|
StatusNotFound = 404
|
|
)
|