Skip to content

Commit

Permalink
Merge branch 'struct-cleanup'
Browse files Browse the repository at this point in the history
  • Loading branch information
upamanyus committed Jul 10, 2024
2 parents e2865fe + cd609ed commit 1a57515
Show file tree
Hide file tree
Showing 8 changed files with 317 additions and 461 deletions.
2 changes: 1 addition & 1 deletion go.mod
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
Expand Down
23 changes: 23 additions & 0 deletions go_dot_etcd_dot_io/etcd/server/v3.v
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.
Loading

0 comments on commit 1a57515

Please sign in to comment.