()
| 17 | }; |
| 18 | |
| 19 | function loadTalks() { |
| 20 | try { |
| 21 | return JSON.parse(readFileSync(fileName, "utf8")); |
| 22 | } catch (e) { |
| 23 | return {}; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | // The line that starts the server must be changed to |
| 28 | new SkillShareServer(loadTalks()).start(8000); |
no outgoing calls
no test coverage detected