# encoding: utf-8 module GithubCLI class Blob < API class << self def get(user, repo, sha, params, options) output options do github_api(options).git_data.blobs.get user, repo, sha, params end end def create(user, repo, params, options) output options do github_api(options).git_data.blobs.create user, repo, params end end end end # Blob end # GithubCLI