Adding the files for the APIs
This commit is contained in:
parent
2be56a1f12
commit
6560d1005c
3
app/server/src/api/accounts.go
Normal file
3
app/server/src/api/accounts.go
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
package api
|
||||
|
||||
// This file contains the APIs for account management
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
// Package api contains all the handlers that the client will invoke on the middleware server
|
||||
package api
|
||||
|
||||
import (
|
||||
|
|
|
|||
3
app/server/src/api/components.go
Normal file
3
app/server/src/api/components.go
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
package api
|
||||
|
||||
// This file contains the APIs for component management
|
||||
3
app/server/src/api/pages.go
Normal file
3
app/server/src/api/pages.go
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
package api
|
||||
|
||||
// This file contains the APIs for page management. A page is defined as a HTML page as constructed by the client
|
||||
6
app/server/src/api/query.go
Normal file
6
app/server/src/api/query.go
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
package api
|
||||
|
||||
/*
|
||||
This file contains the APIs for the client to invoke in order to fetch data or perform an action
|
||||
on the middleware server
|
||||
*/
|
||||
Loading…
Reference in New Issue
Block a user