11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import couchService from '@/services/CouchService'
|
|
|
|
class AdminService {
|
|
public async getAccountList(): Promise<any[]> {
|
|
const result = await couchService.remote.allDocs()
|
|
return result.rows
|
|
}
|
|
}
|
|
|
|
export default new AdminService()
|