Removing unused parameters (#1465)

This commit is contained in:
Cesar Celis Hernandez
2022-01-28 21:24:53 -06:00
committed by GitHub
parent d8b387434b
commit 4a1ccf19a0
15 changed files with 63 additions and 210 deletions

View File

@@ -37,8 +37,12 @@ import (
type NofiticationService string
func NewNofiticationService(value NofiticationService) *NofiticationService {
v := value
return &v
return &value
}
// Pointer returns a pointer to a freshly-allocated NofiticationService.
func (m NofiticationService) Pointer() *NofiticationService {
return &m
}
const (