ockan

Results 19 issues of ockan

Now,to realize the provider,3 steps needed: 1\declare the injectable service: ![image](https://github.com/user-attachments/assets/4988c39a-8bea-452e-ac3c-2d276844b302) 2\give it as a argument of AppFactory: ![image](https://github.com/user-attachments/assets/d171338c-a80a-4239-9886-ef479e3d0749) 3\use really the provider: ![image](https://github.com/user-attachments/assets/700c3265-41f6-416e-95e6-cec795ba1e00) that is complex.why need to use...

hi, The dependency package 'repoze.lru' did not update for 9 years, do you still make it the dependency package?

Yeah,python-dateutil can provide useful functions,but it is enough essential? because it depends a old package 'six',a python version2 package. a pure asgi framework(needs python version 3.5+) depends a python version...

I am doing a project with emmett, but found, when the session reach the expiration time,user was logouted,but can not login again ![Image](https://github.com/user-attachments/assets/3842028d-20e1-4503-8987-f71ee48c2bc6) in that pic, I goto /, it...

a great framework,but the API reference is missing,the developer of emmett have to read the emmett's source code to develop

When write async code and use a async server, ![Image](https://github.com/user-attachments/assets/bba98be8-33b9-4f8d-b8d4-abb6b5926116) ![Image](https://github.com/user-attachments/assets/55d062bf-61da-41bf-ae55-a220597f24ab) the response is as following ![Image](https://github.com/user-attachments/assets/a33dc4f3-66c4-4974-985f-577b47fba779)

@appier.error_handler(...) has no effect, response nothing

When adding authentication and authorization section in the project, the static files was 'see other(error code 303)' by it, then circled in the authentication.

```py from starlette.middleware.sessions import SessionMiddleware from ellar.core.middleware import Middleware class AppConfig(Config): SECRET_KEY = secret_key MIDDLEWARE = [Middleware(SessionMiddleware, max_age=14 * 24 * 60 * 60)] ``` got ```py INFO: Started server...