sbf: move loader to subpackage

This commit is contained in:
Richard Patel 2022-09-02 03:55:49 +02:00
parent 8cd54f8e82
commit ae44b84bc5
24 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
package sbf
// Package loader implements an ELF loader for the Sealevel virtual machine.
//
// Based on https://docs.rs/solana_rbpf/latest/solana_rbpf/elf_parser/index.html
package loader
import (
"bufio"

View File

@ -1,4 +1,4 @@
package sbf
package loader
import (
"debug/elf"