This website works better with JavaScript.
Explore
Help
Sign In
liukai
/
admin-web-template
Watch
1
Star
0
Fork
You've already forked admin-web-template
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
1
Commit
2
Branches
0
Tags
12 MiB
Tree:
8cd7118457
admin-web-template
/
tests
/
server
/
utils.ts
10 lines
132 B
Raw
Normal View
History
Unescape
Escape
✨ init
2 years ago
export
class
Result
{
static
success
(
data
:
any
)
{
return
{
code
:
0
,
success
:
true
,
result
:
data
}
}
}