baublet/w8mngr

View on GitHub
api/dataServices/activity/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { popular } from "./popular";
import { rootService } from "./rootService";
import { saveMutation } from "./saveMutation";
import { stats } from "./stats";

export const activityDataService = {
  ...rootService,
  popular,
  saveMutation,
  stats,
};

export { Activity } from "./types";