-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Moved the api server folder to numaflow Signed-off-by: Krithika Vijayakumar <[email protected]> * Skipping routes test Signed-off-by: Krithika Vijayakumar <[email protected]> Co-authored-by: Krithika Vijayakumar <[email protected]> Signed-off-by: Derek Wang <[email protected]>
- Loading branch information
Showing
7 changed files
with
445 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package apis | ||
|
||
import "github.com/gin-gonic/gin" | ||
|
||
type Handler interface { | ||
ListPipelines(c *gin.Context) | ||
GetPipeline(c *gin.Context) | ||
ListNamespaces(c *gin.Context) | ||
ListInterStepBufferServices(c *gin.Context) | ||
GetInterStepBufferService(c *gin.Context) | ||
ListVerices(c *gin.Context) | ||
GetVertex(c *gin.Context) | ||
ListVertexPods(c *gin.Context) | ||
PodLogs(c *gin.Context) | ||
ListPodsMetrics(c *gin.Context) | ||
GetPodMetrics(c *gin.Context) | ||
ListPipelineEdges(c *gin.Context) | ||
GetPipelineEdge(c *gin.Context) | ||
} |
Oops, something went wrong.