Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
method BaseHandler.prototype.handle
import { BaseHandler } from "https://deno.land/x/authlete_deno@v1.2.3/src/handler/base_handler.ts";

This method is responsible for processing the main task of this handler. This method must return a promise containing an instance of Deno's standard Response class.

A subclass extending this class must implement this method.

Parameters

args: ArgType

The arguments for this method. The type of the arguments must be the type specified by ArgType you specify for this class.

Returns

Promise<Response>

A promise containing a Response object.