mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
15 lines
271 B
Go
15 lines
271 B
Go
package profile
|
|
|
|
func (profile *Profile) Generate(compress_db bool) (err error) {
|
|
if err = profile.CreateIDAFiles(); err != nil {
|
|
return
|
|
}
|
|
|
|
if profile.Info.OS == "windows" {
|
|
if err = profile.CreateX64dbgFiles(compress_db); err != nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|