refactor: project directory structure

This commit is contained in:
0xJacky 2023-11-26 18:59:12 +08:00
parent c1193a5b8c
commit e5a5889931
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
367 changed files with 710 additions and 756 deletions

12
app/src/api/settings.ts Normal file
View file

@ -0,0 +1,12 @@
import http from '@/lib/http'
const settings = {
get() {
return http.get('/settings')
},
save(data: any) {
return http.post('/settings', data)
}
}
export default settings