for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import App from "app";
import RestInterface from "./RestInterface";
class User extends RestInterface {
constructor() {
super("User", App.Config.get("basepath") + "apiusers")
}
export default User;