mirror of
https://github.com/zellyn/diskii.git
synced 2024-11-28 10:52:00 +00:00
df80529449
The prodos operator factory functions just return errors for now, until Catalog is implemented.
17 lines
326 B
Go
17 lines
326 B
Go
// Copyright © 2016 Zellyn Hunter <zellyn@gmail.com>
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/zellyn/diskii/cmd"
|
|
|
|
// Import disk operator factories for DOS3 and Super-Mon
|
|
_ "github.com/zellyn/diskii/lib/dos3"
|
|
_ "github.com/zellyn/diskii/lib/prodos"
|
|
_ "github.com/zellyn/diskii/lib/supermon"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|