chore: add remaining files and cleanup
This commit is contained in:
18
ininternal/api/handler/log_handler.go
Normal file
18
ininternal/api/handler/log_handler.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package handler
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
// LogHandler handles log requests
|
||||
type LogHandler struct{}
|
||||
|
||||
// NewLogHandler creates a new LogHandler
|
||||
func NewLogHandler() *LogHandler {
|
||||
return &LogHandler{}
|
||||
}
|
||||
|
||||
func (h *LogHandler) GetMyLoginLogs(c *gin.Context) {}
|
||||
func (h *LogHandler) GetMyOperationLogs(c *gin.Context) {}
|
||||
func (h *LogHandler) GetLoginLogs(c *gin.Context) {}
|
||||
func (h *LogHandler) GetOperationLogs(c *gin.Context) {}
|
||||
Reference in New Issue
Block a user