AspectedRouting/javascript/index.js

14 lines
312 B
JavaScript
Raw Normal View History

2021-07-15 17:00:54 +02:00
import interpret from './interpret.js';
import RuleSet from './RuleSet.js';
2021-07-15 17:00:54 +02:00
const printMsg = () => {
console.info("BE-StressMap has been installed successfully!")
console.info("View the README file for instructors on how to use this module.")
2021-07-15 17:00:54 +02:00
}
export {
interpret,
RuleSet,
printMsg,
};