2021-07-15 17:00:54 +02:00
|
|
|
import interpret from './interpret.js';
|
|
|
|
import RuleSet from './RuleSet.js';
|
2021-07-14 16:28:02 +02:00
|
|
|
|
2021-07-15 17:00:54 +02:00
|
|
|
const printMsg = () => {
|
2021-07-20 11:28:22 +02:00
|
|
|
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,
|
|
|
|
};
|