This commit is contained in:
2020-05-25 16:07:30 +03:00
parent 0753359f07
commit 13971100cf
55 changed files with 32279 additions and 6964 deletions

20
api/src/index.js Normal file
View File

@@ -0,0 +1,20 @@
import RestApi from './rest';
import PlateRecognizr from './api/PlateRecognizr';
class Main {
api;
alpr;
constructor() {
this.api = new RestApi();
this.alpr = new PlateRecognizr();
}
init() {
this.api.init();
this.alpr.handle();
}
}
const main = new Main();
main.init();