1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-30 09:59:13 +08:00

fix(namesys/pb) rename proto package -> namesys_pb

This commit is contained in:
Brian Tiger Chow
2014-10-22 05:11:28 -07:00
parent 157035233e
commit c4ea239291
3 changed files with 17 additions and 7 deletions

View File

@ -0,0 +1,10 @@
PB = $(wildcard *.proto)
GO = $(PB:.proto=.pb.go)
all: $(GO)
%.pb.go: %.proto
protoc --gogo_out=. --proto_path=../../../../../../:/usr/local/opt/protobuf/include:. $<
clean:
rm *.pb.go

View File

@ -1,19 +1,19 @@
// Code generated by protoc-gen-go.
// source: entry.proto
// Code generated by protoc-gen-gogo.
// source: namesys.proto
// DO NOT EDIT!
/*
Package namesys is a generated protocol buffer package.
Package namesys_pb is a generated protocol buffer package.
It is generated from these files:
entry.proto
namesys.proto
It has these top-level messages:
IpnsEntry
*/
package namesys
package namesys_pb
import proto "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto"
import proto "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/gogoprotobuf/proto"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -1,4 +1,4 @@
package namesys;
package namesys.pb;
message IpnsEntry {
required bytes value = 1;