refactor: Use pointers for controllers

This commit is contained in:
2025-08-19 21:05:16 +03:00
parent 4e186de981
commit 9d43c10488
3 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ import (
type Controller struct {
}
func (Controller) New() controller.Controller {
func (*Controller) New() controller.Controller {
return &Controller{}
}