feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
12
api.hyungi.net/models/pingModel.js
Normal file
12
api.hyungi.net/models/pingModel.js
Normal file
@@ -0,0 +1,12 @@
|
||||
// models/pingModel.js
|
||||
|
||||
/**
|
||||
* 단순 ping 비즈니스 로직 레이어
|
||||
* 필요하다면 여기서 더 복잡한 처리나 다른 서비스 호출 등을 관리
|
||||
*/
|
||||
exports.ping = () => {
|
||||
return {
|
||||
message: 'pong',
|
||||
timestamp: new Date().toISOString()
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user