Adding the files for the APIs

This commit is contained in:
Arpit Mohan 2019-02-22 08:53:03 +05:30
parent 2be56a1f12
commit 6560d1005c
5 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,3 @@
package api
// This file contains the APIs for account management

View File

@ -1,3 +1,4 @@
// Package api contains all the handlers that the client will invoke on the middleware server
package api
import (

View File

@ -0,0 +1,3 @@
package api
// This file contains the APIs for component management

View 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

View 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
*/