Skip to content

Commit

Permalink
Introduce schema key in Service interface
Browse files Browse the repository at this point in the history
  • Loading branch information
mishok13 committed Sep 28, 2017
1 parent bd5365f commit 739198f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/service.ts
Expand Up @@ -80,6 +80,9 @@ export interface Service {
* Handles the actual request
*/
handler: (context: Context, request: any) => Promise<ServiceResponse | void>;
}


/**
*
*/
schema?: any;
}

0 comments on commit 739198f

Please sign in to comment.