Add environment example, update .gitignore, and switch license to AGPL v3. Introduce error handling classes, ESLint config, and main modules for database, logging, certificate management, and utility functions. Add authentication routes, schemas, and service layer for a modular REST API. Update README and set up repository structure for further development.
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
const DefaultError = require("./DefaultError")
|
|
const YggdrasilError = require("./YggdrasilError")
|
|
const ValidationError = require("./ValidationError")
|
|
|
|
module.exports = {
|
|
DefaultError,
|
|
YggdrasilError,
|
|
ValidationError
|
|
} |