Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-2_open_source_sw_development_Han
/
Jaksimsamil
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
redbean096@khu.ac.kr
2020-12-09 03:21:40 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f9532318a5c04cfd7cf10ea5ed43a695ff859219
f9532318
1 parent
4d359a62
add line index.js file
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
jaksimsamil-server/src/api/line/index.js
jaksimsamil-server/src/api/line/index.js
0 → 100644
View file @
f953231
const
Router
=
require
(
"koa-router"
);
const
line
=
new
Router
();
const
lineCtrl
=
require
(
"./line.ctrl"
);
line
.
post
(
"/hook"
,
lineCtrl
.
linestart
);
module
.
exports
=
line
;
Please
register
or
login
to post a comment