chore: add remaining files and cleanup

This commit is contained in:
2026-04-02 11:48:04 +08:00
parent bbeeb63dfa
commit 1cba56ea85
11 changed files with 231 additions and 0 deletions

View 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) {}