[in slack](https://gophers.slack.com/archives/C0VPK4Z5E/p1733498044427149) Suppose I have: ```go type X struct { A, B, C, D string } ``` and I want to move to: ```go type Y struct { A, B string } type X struct { Y C, D string } ``` It would be nice to have some help with that.
in slack
Suppose I have:
and I want to move to:
It would be nice to have some help with that.