Files
alfred-be/alfred/mocks/MockWebClient.go
2026-03-08 16:14:42 +05:30

15 lines
207 B
Go

package mocks
import (
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/mock"
)
type MockWebClient struct {
mock.Mock
}
func (m *MockWebClient) IngestWebSession(c *gin.Context) {
m.Called(c)
}