import { Application } from "express";
import routes from "./routes"


function addAuthenticationRoutes(app:Application){
    app.use(routes)
}

export default addAuthenticationRoutes