Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bluejoyq
/
searchGuide
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
bluejoyq
2019-11-11 18:15:16 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8747939ecf8f9886bde646efbfb963ce389230ff
8747939e
1 parent
d0bd3a14
init api route
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
api/index.js
api/index.js
0 → 100644
View file @
8747939
const
express
=
require
(
'express'
);
const
router
=
express
.
Router
();
router
.
post
(
'/cliConnection'
,
require
(
'./cliConnection'
));
router
.
post
(
'/STT'
,
require
(
'./STT'
));
module
.
exports
=
router
;
\ No newline at end of file
Please
register
or
login
to post a comment