mirror of
https://github.com/make-42/xyosc
synced 2025-01-19 02:57:34 +01:00
14 lines
270 B
Go
14 lines
270 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package app
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
func main(f func(a App)) {
|
|
log.Fatal("main is not implemented on Windows")
|
|
}
|