gzip

package
v0.0.0-...-3bb443a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 24, 2017 License: Apache-2.0 Imports: 6 Imported by: 0

README

GZIP Plugin

The gzip plugin is a plugin for the micro toolkit which enables gzipping of http response

Usage

Register the plugin before building Micro

package main

import (
	"github.com/micro/micro/plugin"
	"github.com/micro/go-plugins/micro/gzip"
)

func init() {
	plugin.Register(gzip.New())
}
Scoped to API

If you like to only apply the plugin for a specific component you can register it with that specifically. For example, below you'll see the plugin registered with the API.

package main

import (
	"github.com/micro/micro/api"
	"github.com/micro/go-plugins/micro/gzip"
)

func init() {
	api.Register(gzip.New())
}

Documentation

Overview

Package gzip is a micro plugin for gzipping http response

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New() plugin.Plugin

Types

This section is empty.