mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 23:26:48 +08:00
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
// This will import all the verifications that should be run by the:
|
|
//
|
|
// cli verify database
|
|
//
|
|
// command. They exist in the form:
|
|
//
|
|
// async ({fix = false, batch = 1000}) => {}
|
|
//
|
|
// where their options are derrived.
|
|
module.exports = [
|
|
require('./comments'),
|
|
];
|