Call one handler from another?

Hi

Using the terraform plugin framework. I have a resource Create handler implemented eg

func (t *Thing) Create(ctx context.Context, req resource.CreateRequest, resp  *resource.CreateResponse) {…}

The Update handler will have the same code as Create. Is there a way to call the Create handler from Update ? Just looking to avoid code duplication.