Commit e5b93eef authored by Sachinda 's avatar Sachinda

Initial commit

parents
This diff is collapsed.
const Schema = require("validate");
const model = new Schema({
user_name: {
type: String,
required: true,
},
password: {
type: String,
required: true,
},
service_url: {
type: String,
required: true,
},
service_port: {
type: Number,
required: true
},
db_name: {
type: String,
required: true,
},
});
module.exports = model;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment