fspl/generator/native/native.go

11 lines
346 B
Go
Raw Permalink Normal View History

// Package native provides a generator target describing the current system.
// This is accomplished using several conditionally compiled source files.
2023-11-30 22:16:55 +00:00
package native
2024-02-23 00:22:53 +00:00
import "git.tebibyte.media/fspl/fspl/generator"
2023-11-30 22:16:55 +00:00
// NativeTarget returns a target describing the current system.
2023-12-03 04:42:54 +00:00
func NativeTarget () generator.Target {
2023-11-30 22:16:55 +00:00
return nativeTarget()
}