mirekys / cs3apis

:arrows_clockwise: Connect Storage and Application Providers

Home Page:https://cs3org.github.io/cs3apis/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

License Gitter chat Build Status

The CS3APIS connect Storage and Applications Providers.

API Documentation

https://cs3org.github.io/cs3apis/

Officialy compiled libraries

Local compilation

You need to have Docker installed. The artifacts will be available under the build directory.

$ git clone https://github.com/cs3org/cs3apis
$ make build 
$ make go # generate go code

See the Makefile to find all the available build options.

Overview

This repository contains the interface definitions of public CS3APIS that support the gRPC protocol. You can also use these definitions with open source tools to generate client libraries, documentation, and other artifacts.

CS3 APIs follows Google and Uber API design guidelines, specially on error handling and naming convention. You can read more about these guidelines at https://cloud.google.com/apis/design/ and https://github.com/uber/prototool/blob/dev/style/README.md.

This repository structure is very similar to https://github.com/googleapis/googleapis.

CS3 APIs use Protocol Buffers version 3 (proto3) as their Interface Definition Language (IDL) to define the API interface and the structure of the payload messages.

Repository Structure

This repository uses a directory hierarchy that reflects the CS3 feature set. In general, every API has its own root directory, and each major version of the API has its own subdirectory. The proto package names exactly match the directory: this makes it easy to locate the proto definitions and ensures that the generated client libraries have idiomatic namespaces in most programming languages.

NOTE: The major version of an API is used to indicate breaking change to the API.

About

:arrows_clockwise: Connect Storage and Application Providers

https://cs3org.github.io/cs3apis/

License:Apache License 2.0


Languages

Language:Go 57.3%Language:CMake 32.1%Language:Makefile 10.7%