Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bluejoyq
/
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
sckim
2019-11-12 20:07:34 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
04620944dfc2725b7a4d42abe3fdff7ec7ab6c4f
04620944
1 parent
70b6352a
test file upload
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
app_test.js
app_test.js
0 → 100644
View file @
0462094
var
express
=
require
(
'express'
);
var
app
=
express
();
app
.
get
(
'/'
,
(
req
,
res
)
=>
{
return
res
.
send
(
"HELLO, TEST!"
)
});
app
.
listen
(
3000
,
function
()
{
console
.
log
(
'Linebot listening on port 3000!'
);
});
Please
register
or
login
to post a comment