File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 12
12
[ Danet] ( https://github.com/Savory/Danet ) .
13
13
14
14
## Quick Start
15
-
15
+ ``` bash
16
+ deno install --global -A -n danet jsr:@danet/cli
17
+ danet new < my-project>
18
+ ```
16
19
[ Overview & Tutorial] ( https://savory.github.io/Danet/openapi/introduction/ )
17
20
18
21
## License
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @module
3
+ * Provides decorators to define metadata to generate your openAPI/Swagger documentation.
4
+ */
5
+
1
6
import { BODY_TYPE_KEY , MetadataHelper , QUERY_TYPE_KEY } from './deps.ts' ;
2
7
import { Constructor } from './mod.ts' ;
3
8
import { Swagger } from "./swagger.ts" ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @danet/swagger" ,
3
- "version" : " 2.1.4 " ,
3
+ "version" : " 2.1.5 " ,
4
4
"exports" : {
5
5
"." :" ./mod.ts" ,
6
6
"./decorators" : " ./decorators.ts"
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @module
3
+ * SwaggerModule provides methods to generate and set up Swagger documentation for a Danet application.
4
+ */
5
+
1
6
import {
2
7
DanetApplication ,
3
8
MetadataHelper ,
You can’t perform that action at this time.
0 commit comments