mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-16 15:23:50 +00:00
9 lines
258 B
Go
9 lines
258 B
Go
package profile
|
|
|
|
func compile_x64dbg_artifacts(profile *Profile, params *CompileArtifactsParams) (err error) {
|
|
if err = compile_x64dbg_types(profile); err != nil {
|
|
return
|
|
}
|
|
err = compile_x64dbg_database(profile, params.CompressX64dbgDatabase)
|
|
return
|
|
}
|