obcon-scada / app /include /fields /string.js
chanmin0723's picture
Initial obcon SCADA deploy
e4bf523
Raw
History Blame Contribute Delete
422 Bytes
'use strict'
/**
* Copyright (c) 2017~2019, OBCon Inc.
* All rights reserved.
*/
/**
* @file
* @copyright 2017~2019, OBCon Inc.
* @author gye hyun james kim [pnuskgh@gmail.com]
*/
let FieldBase = utils.getClass('include', 'fields', 'base.js');
class FieldString extends FieldBase {
constructor() {
super();
this.type = 'string';
}
}
module.exports = FieldString;