You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
362 B
17 lines
362 B
import axios from 'axios'
|
|
|
|
const service = axios.create()
|
|
|
|
export function Commits(page) {
|
|
return service({
|
|
url: 'https://api.github.com/repos/flipped-aurora/gin-vue-admin/commits?page=' + page,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function Members() {
|
|
return service({
|
|
url: 'https://api.github.com/orgs/FLIPPED-AURORA/members',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|