Cleaned up context interface

This commit is contained in:
Eduard Urbach 2024-03-16 15:30:05 +01:00
parent 4df715f3b8
commit e16221c971
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

View File

@ -12,13 +12,13 @@ import (
type Context interface {
Copy(io.Reader) error
Bytes([]byte) error
Error(messages ...any) error
File(path string) error
Get(param string) string
Error(...any) error
File(string) error
Get(string) string
Next() error
Request() Request
Response() Response
Status(status int) Context
Status(int) Context
String(string) error
}