Toggle navigation
Toggle navigation
This project
Loading...
Sign in
은승우
/
LINEBOT
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
강수인
2018-12-07 00:46:52 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
475062e95bfa1086b1035696e8976b71a6d50452
475062e9
1 parent
79fd85ef
카카오 api에서 필요했던 keyboard.js 삭제
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
17 deletions
routes/keyboard.js
routes/keyboard.js
deleted
100644 → 0
View file @
79fd85e
var
express
=
require
(
'express'
);
var
app
=
express
.
Router
();
// Kakao Keyboard API
app
.
get
(
'/'
,
function
(
req
,
res
)
{
const
menu
=
{
"type"
:
'buttons'
,
"buttons"
:
[
"/설정"
,
"/시작"
]};
res
.
status
(
200
).
set
({
'content-type'
:
'application/json'
}).
send
(
JSON
.
stringify
(
menu
));
});
module
.
exports
=
app
;
Please
register
or
login
to post a comment