Add concat example
This commit is contained in:
parent
99d310ac79
commit
fee245f5d4
13
examples/concat/Makefile
Normal file
13
examples/concat/Makefile
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
.PHONY: build
|
||||||
|
build:
|
||||||
|
mkdir -p output
|
||||||
|
protoc -I. --gotemplate_out=template_dir=templates,debug=true,all=true:output proto/*.proto
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY: re
|
||||||
|
re: clean build
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm -rf output
|
3
examples/concat/output/concat.txt
Normal file
3
examples/concat/output/concat.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
I'm Eric
|
||||||
|
I'm Francis
|
||||||
|
I'm Arnold
|
1
examples/concat/output/static.txt
Normal file
1
examples/concat/output/static.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
This is static text.This is static text.This is static text.
|
2
examples/concat/proto/Eric.proto
Normal file
2
examples/concat/proto/Eric.proto
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
package Eric;
|
2
examples/concat/proto/Francis.proto
Normal file
2
examples/concat/proto/Francis.proto
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
package Francis;
|
2
examples/concat/proto/arnold.proto
Normal file
2
examples/concat/proto/arnold.proto
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
package Arnold;
|
1
examples/concat/templates/concat.txt.tmpl
Normal file
1
examples/concat/templates/concat.txt.tmpl
Normal file
@ -0,0 +1 @@
|
|||||||
|
I'm {{.File.Package}}
|
1
examples/concat/templates/static.txt.tmpl
Normal file
1
examples/concat/templates/static.txt.tmpl
Normal file
@ -0,0 +1 @@
|
|||||||
|
This is static text.
|
Loading…
Reference in New Issue
Block a user