Further documentation updates.

This commit is contained in:
Spencer Brower
2018-06-24 16:38:52 -04:00
parent 206b94dcac
commit a0d6686cbc
5 changed files with 23 additions and 6 deletions

11
runner/README.md Normal file
View File

@@ -0,0 +1,11 @@
# runner
[![GoDoc](https://godoc.org/github.com/sbrow/runner?status.svg)](https://godoc.org/github.com/sbrow/runner) [![Build Status](https://travis-ci.org/sbrow/runner.svg?branch=master)](https://travis-ci.org/sbrow/runner) [![Coverage Status](https://coveralls.io/repos/github/sbrow/runner/badge.svg?branch=master)](https://coveralls.io/github/sbrow/runner?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/sbrow/runner)](https://goreportcard.com/report/github.com/sbrow/runner)
Package runner runs the non-go code that Photoshop understands, and passes it to
back to the go program. Currently, this is primarily implemented through Adobe
Extendscript, but hopefully in the future it will be upgraded to a C++ plugin.
## Installation
```bash
$ go get -u github.com/sbrow/ps/runner
```

View File

@@ -1,3 +1,9 @@
//go:generate godocdown -template ../.godocdown.template -output=README.md
// Package runner runs the non-go code that Photoshop understands,
// and passes it to back to the go program. Currently, this is
// primarily implemented through Adobe Extendscript, but hopefully
// in the future it will be upgraded to a C++ plugin.
package runner
import (