mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-27 22:52:36 +00:00
17 lines
208 B
JavaScript
17 lines
208 B
JavaScript
|
"use strict";
|
||
|
|
||
|
/*
|
||
|
* Implements Gatherer
|
||
|
*
|
||
|
* Stores necessary information including:
|
||
|
* - user data
|
||
|
* - voting preferences
|
||
|
* - leader status
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
function Gatherer () {
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = Gatherer;
|