mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 04:09:12 +00:00
9 lines
275 B
TypeScript
9 lines
275 B
TypeScript
import { IMockBackendService, HelloMsg, HelloReply } from './mock.bento'
|
|
|
|
export default class MockBackendService implements IMockBackendService {
|
|
helloBackend (ctx: any, msg: HelloMsg): HelloReply {
|
|
return {
|
|
message: `hello, ${msg.hello}! i'm bot!!`
|
|
}
|
|
}
|
|
}
|