@suluk/drizzle - v0.1.6
    Preparing search index...

    Interface CrudHandlers

    interface CrudHandlers {
        list: (c: Context) => Promise<Response>;
        get: (c: Context) => Promise<Response>;
        create: (c: Context) => Promise<Response>;
        update: (c: Context) => Promise<Response>;
        delete: (c: Context) => Promise<Response>;
    }
    Index

    Properties

    list: (c: Context) => Promise<Response>
    get: (c: Context) => Promise<Response>
    create: (c: Context) => Promise<Response>
    update: (c: Context) => Promise<Response>
    delete: (c: Context) => Promise<Response>