bun-server-di
Installation
SKILL.md
Bun Server Dependency Injection
Basic Usage
1. Mark Services with @Injectable
import { Injectable } from "@dangao/bun-server";
@Injectable()
class UserService {
getUser(id: string) {
return { id, name: "Alice" };
}
}