repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | export interface Logger { |
| #2 | info: (message: string) => void; |
| #3 | error: (message: string) => void; |
| #4 | debug: (message: string) => void; |
| #5 | warn: (message: string) => void; |
| #6 | } |
| #7 | |
| #8 | export const logger: Logger = { |
| #9 | info: (message: string) => console.log(`[INFO] ${message}`), |
| #10 | error: (message: string) => console.error(`[ERROR] ${message}`), |
| #11 | debug: (message: string) => console.debug(`[DEBUG] ${message}`), |
| #12 | warn: (message: string) => console.warn(`[WARN] ${message}`), |
| #13 | }; |
| #14 |