8 lines
179 B
Python
8 lines
179 B
Python
|
from flask_wtf import FlaskForm
|
||
|
from wtforms import StringField, FloatField
|
||
|
|
||
|
|
||
|
class AddHostForm(FlaskForm):
|
||
|
name = StringField('name')
|
||
|
boot_time = FloatField('boot_time')
|