mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-03-22 22:00:13 +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
|
|
}
|