chain.js 197 B

12345678910
  1. const http = require('../utils/axios')
  2. module.exports = class Chain {
  3. static async getAll() {
  4. const url = '/chain/getAll'
  5. const rst = await http.post(url, {})
  6. return rst.data
  7. }
  8. }