mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-09 01:09:51 +03:00
11 lines
172 B
TypeScript
11 lines
172 B
TypeScript
import Schema from 'async-validator';
|
|
|
|
export const SIGN_IN_REQUEST_VALIDATOR = new Schema({
|
|
username: {
|
|
required: true
|
|
},
|
|
password: {
|
|
required: true
|
|
}
|
|
});
|