// home.js // Copyright (C) 2021 Digital Telepresence, LLC // License: Apache-2.0 'use strict'; module.exports.getHome = async (req, res) => { res.send('Hello, controller!'); };