mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2026-01-08 06:30:06 -06:00
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
// eslint-disable-next-line import/prefer-default-export
|
|
const signup = (req, res) => {
|
|
res.render('signup');
|
|
};
|
|
|
|
const signin = (req, res) => {
|
|
res.render('signin');
|
|
};
|
|
|
|
export default {signup, signin};
|