Coverage for docs / docs_src / getting_started / asyncapi / serve.py: 0%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-05-08 01:48 +0000

1""" 

2This file contains `faststream docs` commands. 

3These commands are referenced in guide file. 

4These commands are also imported and used in tests under tests/ directory. 

5""" 

6 

7 

8gen_asyncapi_json_cmd = """ 

9faststream docs gen basic:asyncapi 

10""" 

11 

12gen_asyncapi_yaml_cmd = """ 

13faststream docs gen --yaml basic:asyncapi 

14""" 

15 

16asyncapi_serve_cmd = """ 

17faststream docs serve basic:asyncapi 

18""" 

19 

20asyncapi_serve_json_cmd = """ 

21faststream docs serve asyncapi.json 

22""" 

23 

24asyncapi_serve_yaml_cmd = """ 

25faststream docs serve asyncapi.yaml 

26"""