14 lines
402 B
TypeScript
14 lines
402 B
TypeScript
import s from "@sharkitek/core";
|
|
|
|
import { Agent, AgentModel } from "./agent.ts";
|
|
|
|
/**
|
|
* The **Service Provider** is responsible for providing a database, a storage solution,
|
|
* or a way to execute a specific thing when an application needs it.
|
|
*/
|
|
export class ServiceProvider extends Agent {}
|
|
|
|
export const ServiceProviderModel = s.extend(AgentModel, {
|
|
Class: ServiceProvider,
|
|
properties: {},
|
|
});
|