How to draw protogen
How to draw protogen
How to draw a protogen (Part 1/2 short version)
how I draw protogens part 1 tulipСкачатьПодробнее
drawing basic protogen part 1СкачатьПодробнее
How to draw a protogen (Part 1/2)СкачатьПодробнее
How to Draw a ProtogenСкачатьПодробнее
how to draw a protogen #shortsСкачатьПодробнее
how to draw a protogenСкачатьПодробнее
Drawing protogen head pencil.Fennix fox ZAJAGAME🦊СкачатьПодробнее
How to draw a protogen P1СкачатьПодробнее
Drawing protogens based on food theme | Part 1 (Procreate) (Protogen)СкачатьПодробнее
Drawing a protogen sketchСкачатьПодробнее
When I Make a ProtogenСкачатьПодробнее
how to draw a protogen!СкачатьПодробнее
How to draw a ProtogenСкачатьПодробнее
Protogen sketch (part 1)СкачатьПодробнее
How to draw a Protogen :)СкачатьПодробнее
Protogen sketch (part 2)СкачатьПодробнее
How to draw Protogen head on paper | Art Stuff TutorialСкачатьПодробнее
Drawing Zero as a protogenСкачатьПодробнее
How to Draw a ProtogenСкачатьПодробнее
How to draw a protogen (Part 1/2 short version)СкачатьПодробнее
how to draw a protogenСкачатьПодробнее
Drawing a protogen sketchСкачатьПодробнее
Proto sense V1.0 feature showСкачатьПодробнее
10 ways to boop protogenСкачатьПодробнее
how to draw a protogen #shortsСкачатьПодробнее
now i actually learned how to draw protogen. СкачатьПодробнее
(Gmod) Engineer meets a protogenСкачатьПодробнее
how to draw a protogen!СкачатьПодробнее
How To Draw Furry Art (sarcastic furry guide)СкачатьПодробнее
How to draw a protogen (Part 1/2)СкачатьПодробнее
How to draw a Protogen🎀 *not great*СкачатьПодробнее
How to draw Protogen head on paper | Art Stuff TutorialСкачатьПодробнее
How to Draw a Protogen
How To Draw Furry Art (sarcastic furry guide)СкачатьПодробнее
Drawing a protogen! |speed draw| |ibspaint X|СкачатьПодробнее
how to draw a protogen visorСкачатьПодробнее
how to draw a protogen visorСкачатьПодробнее
Drawing another protogenСкачатьПодробнее
how to draw a protogen *lazy*СкачатьПодробнее
How to make a protogen in Gacha online 🐕СкачатьПодробнее
Draw a Protogen with me!СкачатьПодробнее
Drawing a protogen [my first time and a friend suggested it ;-;]СкачатьПодробнее
how to draw a protogenСкачатьПодробнее
How To Draw A Protogen! (NOT MY WAY)СкачатьПодробнее
how to draw a protogen #shortsСкачатьПодробнее
how to make a protogen version. 4 (og)СкачатьПодробнее
I tried to draw a protogen but it looks like thisСкачатьПодробнее
How to make a protogen(tutorial)СкачатьПодробнее
How to make a protogen voice on Moblie!СкачатьПодробнее
🐎 How to make a PROTOGEN skin in my style! + Protogen species information | PONY TOWNСкачатьПодробнее
How i draw protogen
How To Draw Furry Art (sarcastic furry guide)СкачатьПодробнее
Drawing protogen (Not finished couse i was tired)СкачатьПодробнее
drawing protogen abs (kaiju paradise)СкачатьПодробнее
how to draw a protogen visorСкачатьПодробнее
how to draw a protogen visorСкачатьПодробнее
I practiced drawing protogen visorsСкачатьПодробнее
how to draw a protogen *lazy*СкачатьПодробнее
How to draw a protogenСкачатьПодробнее
how to draw a protogenСкачатьПодробнее
How To Draw A Protogen! (NOT MY WAY)СкачатьПодробнее
Protogen Drawing Timelapse #viral #fyp #art #drawing #protogenСкачатьПодробнее
how to draw a protogen #shortsСкачатьПодробнее
how to draw a protogenСкачатьПодробнее
im finally done Drawing ProtogenСкачатьПодробнее
how to draw a protogen (you can copy)СкачатьПодробнее
How to draw satellite the protogenСкачатьПодробнее
my World Record of the fastest drawing protogenСкачатьПодробнее
zeeraw/protogen
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Command line tool and workflow for organising code generation of Google’s protocol buffers across multiple projects.
Using Google’s protocol buffers bring great potential for substantial performance gains and type safety over the wire. But it also comes with the constraint that you need to share proto files among all your service providers and consumers.
Protogen works under the assumption, and with the approach that proto files should be centralised in one repository, divided into packages, version tagged and made available through Git. What the protogen tool provides is a workflow for organising and versioning your protobuf contracts by abstracting protoc and git, acting like a package manager for protoc generated code.
Our motive is to help you focus on collaborating with your colleuages, design powerful APIs and build great projects.
What is protogen?
The protogen project consists of three things, the command line tool, the workflow and the .protogen file written with the protogen configuration language. These are all the things you need to manage your proto files.
The command line tool
The command line tool is used to both manage your central protobuf repository and to automate code generation in service and consumer projects.
The easiest way of obtaining the protogen command line tool for any platform is by installing it through Go package installer. Run the command and immediately have access to the tool.
The protogen workflow is how you should manage your central protobuf repository. This includes how to structure your packages and how to tag your releases. Visit our example repository where we showcase how to structure our proto files. You can also read more about the protogen workflow on the wiki.
We provide protogen file syntax highlighting and snippets for a few different editors.
About
Command line tool and workflow for organising code generation of Google’s protocol buffers across multiple projects