UNPKG
ti
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A simple MVC framework for node web server.
mrtian/Ti
ti
/
sample
/
model
/
product.js
15 lines
(14 loc)
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//demo for product
module
.
exports
= {
getItem
:
function
(
id
){
//code for getItem
return
{
id
:id,
title
:
"Demo for product"
,
content
:
"Demo for product content"
} },
getList
:
function
(
){
//code for getList
} }