forked from goose-lang/goose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
317 additions
and
461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/tchajed/goose | ||
|
||
go 1.18 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/fatih/color v1.16.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
(* autogenerated from go.etcd.io/etcd/server/v3 *) | ||
From Perennial.goose_lang Require Import prelude. | ||
From Goose Require go_dot_etcd_dot_io.etcd.server.v3.etcdmain. | ||
From Goose Require os. | ||
|
||
Section code. | ||
Context `{ext_ty: ext_types}. | ||
Local Coercion Var' s: expr := Var s. | ||
|
||
(* Package main is a simple wrapper of the real etcd entrypoint package | ||
(located at go.etcd.io/etcd/etcdmain) to ensure that etcd is still | ||
"go getable"; e.g. `go get go.etcd.io/etcd` works as expected and | ||
builds a binary in $GOBIN/etcd | ||
This package should NOT be extended or modified in any way; to modify the | ||
etcd binary, work in the `go.etcd.io/etcd/etcdmain` package. *) | ||
|
||
Definition main: val := | ||
rec: "main" <> := | ||
etcdmain.Main os.Args;; | ||
#(). | ||
|
||
End code. |
Oops, something went wrong.