Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/authlete_deno/mod.ts>BaseHandler

Authlete Library for Deno
Go to Latest
class BaseHandler
Re-export
Abstract
import { BaseHandler } from "https://deno.land/x/authlete_deno@v1.2.3/mod.ts";

The base class for a handler class.

Methods

abstract
handle(args: ArgType): Promise<Response>

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.