package action import ( . "ios-wrapper/internal/wrapper/ofile" ) type removeInitPointer struct{} func (action *removeInitPointer) withMacho(mf *MachoFile) error { mf.Context().RemoveInitFunctions() return nil } func (action *removeInitPointer) withFat(ff *FatFile) error { return defaultWithFat(action, ff) } func NewRemoveInitPointerAction() *removeInitPointer { return &removeInitPointer{} }