17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
import {ControllerHandler} from './controllerHandler';
|
|
import {API} from './api/api';
|
|
import {Notes} from '../models/notes/notes';
|
|
|
|
export class GroupController extends ControllerHandler {
|
|
static async newGroup(req, res, next) {
|
|
const errors = new API.errors(res);
|
|
|
|
|
|
next()
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|