mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-18 14:31:44 +03:00
12 lines
348 B
JavaScript
12 lines
348 B
JavaScript
|
import * as Utilities from "~/node_common/utilities";
|
||
|
import * as Data from "~/node_common/data";
|
||
|
import * as Powergate from "~/node_common/powergate";
|
||
|
import * as Constants from "~/node_common/constants";
|
||
|
|
||
|
export const get = async () => {
|
||
|
const analytics = {};
|
||
|
|
||
|
// TODO(colin): We can bind Analytics here on the server.
|
||
|
return analytics;
|
||
|
};
|