Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for goto (0.11 sec)

  1. callbacks.go

    		callbacks = removeCallbacks(callbacks, removedMap)
    	}
    	p.callbacks = callbacks
    
    	if p.fns, err = sortCallbacks(p.callbacks); err != nil {
    		p.db.Logger.Error(context.Background(), "Got error when compile callbacks, got %v", err)
    	}
    	return
    }
    
    func (c *callback) Before(name string) *callback {
    	c.before = name
    	return c
    }
    
    func (c *callback) After(name string) *callback {
    	c.after = name
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Tue Mar 26 03:33:36 GMT 2024
    - 8.6K bytes
    - Viewed (1)
Back to top