All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			Co-authored-by: sneak <sneak@sneak.berlin> Reviewed-on: #5
		
			
				
	
	
		
			16 lines
		
	
	
		
			276 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			276 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package bork
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"fmt"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	ErrMissingMagic  = errors.New("missing magic bytes in file")
 | 
						|
	ErrFileTruncated = errors.New("file/stream is truncated abnormally")
 | 
						|
)
 | 
						|
 | 
						|
func Newf(format string, args ...interface{}) error {
 | 
						|
	return fmt.Errorf(format, args...)
 | 
						|
}
 |