Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
merasabkuch
/
RaptusBackend
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
df72131
RaptusBackend
/
models
/
CouponModel.js
GitHub Actions
Initial commit
df72131
about 1 year ago
raw
Copy download link
history
blame
Safe
206 Bytes
const
mongoose=
require
(
'mongoose'
);
const
couponSchema =
new
mongoose.
Schema
({
Coupon
:{
type
:
String
}
})
const
Coupon
= mongoose.
model
(
'Coupon'
, couponSchema);
module
.
exports
=
Coupon
;