13 lines
212 B
Go
13 lines
212 B
Go
package pb
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func (r *ListUsersRequest) AfterListUsers(ctx context.Context, resp *ListUsersResponse, db *gorm.DB) error {
|
|
fmt.Println("AfterListUsers")
|
|
return nil
|
|
}
|