Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cyberdelia/templates

Bundle templates
https://github.com/cyberdelia/templates

Last synced: 5 days ago
JSON representation

Bundle templates

Awesome Lists containing this project

README

        

⚠️ This library is now obsolete, please use: https://golang.org/pkg/embed/

# Templates

Templates allows you to bundle file template in your binary.

## Installation

To install simply go get it:

```
$ go get github.com/cyberdelia/templates
```

## Usage

Generate the package:

```
$ templates -s templates/ > templates/templates.go
```

Use it in your code:

```
template = template.Must(templates.Parse(nil))
```

Or using ``go generate``:

```
//go:generate templates -s templates/ -o templates/templates.go
```