Cli service
Open
Inactive
- Dominant language
- TypeScript
- Stars
- 19k
- Forks
- 1.8k
- PR merge metrics
- No merged PRs in 30d
Description
Is it possible to run a service from cli?
```js
class UserService extends Service {
async find(uid) {
const user = await this.ctx.db.query('select * from user where uid = ?', uid);
return user;
}
}
```
Something like this
```bash
yarn egg-cli user find 1
```
Contributor guide
Assessment
This issue has not been assessed yet.