Skip to content

Instantly share code, notes, and snippets.

View michaeljs1990's full-sized avatar

Michael Schuett michaeljs1990

View GitHub Profile
#!/bin/bash
#
# Copyright (c) 2014, Intel Corporation
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
@michaeljs1990
michaeljs1990 / example.proto
Created July 28, 2020 07:25 — forked from miguelmota/example.proto
Golang protobuf marshal and unmarshal example
syntax = "proto3";
message Message {
bytes text = 1;
}