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