Skip to content
Snippets Groups Projects

Auth

Merged Lucas Gabriel Lima requested to merge auth into development
2 files
+ 51
12
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 22
0
// Location types
class City {
constructor(id) {
this.id = id;
}
}
class State {
constructor(id) {
this.id = id;
}
}
class Region {
constructor(id) {
this.id = id;
}
}
const locations = { city: City, state: State, region: Region };
module.exports = locations;
Loading