Skip to content

Instantly share code, notes, and snippets.

View atejandro's full-sized avatar

Alejandro Ardila Schickler atejandro

  • Mundi
  • Bogotá, Colombia
View GitHub Profile
@atejandro
atejandro / alejandro-ardila-back.php
Last active June 21, 2017 16:54
Gist for Rappi [Alejandro Ardila Schickler]
//Specifies all the error types this particular service has.
abstract class ServerError
{
const Undefined = 0;
const AlreadyExists = 1;
const InvalidArgument = 2;
const NotFound = 3;
}
//Shows the phone type.
@atejandro
atejandro / build-api.gradle
Last active March 10, 2020 14:09
gradle grpc multiproject
apply plugin: "com.google.protobuf"
description = "api"
version '1.0.1'
sourceCompatibility = 1.6
targetCompatibility = 1.6
def protocVersion = '3.0.2'