Changes
4 changed files (+1/-36)
-
-
@@ -3,7 +3,4 @@ // SPDX-License-Identifier: AGPL-3.0-onlygo 1.24.1 use ( ./packages/proto ./packages/test_go_consumer ) use ./packages/proto
-
-
packages/test_go_consumer/go.mod (deleted)
-
@@ -1,8 +0,0 @@// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com> // SPDX-License-Identifier: AGPL-3.0-only module pocka.jp/x/yamori/test_go_consumer go 1.24.1 require google.golang.org/protobuf v1.36.5
-
-
packages/test_go_consumer/go.sum (deleted)
-
@@ -1,3 +0,0 @@github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM=
-
-
packages/test_go_consumer/main.go (deleted)
-
@@ -1,21 +0,0 @@// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com> // SPDX-License-Identifier: AGPL-3.0-only package main import ( "fmt" "google.golang.org/protobuf/proto" types "pocka.jp/x/yamori/proto/go/type/v1" ) func main() { date := &types.Date{ Year: proto.Uint32(2025), Month: proto.Uint32(1), Day: proto.Uint32(1), } fmt.Printf("%d-%d-%d\n", *date.Year, *date.Month, *date.Day) }
-