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

https://github.com/uphy/alfred-snippet-builder


https://github.com/uphy/alfred-snippet-builder

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Alfred Snippets Builder

```go
package main

import "github.com/uphy/alfred-snippet-builder"

func main() {
s := snippet.New("prefix", "suffix")
s.Add("name", "snippet", "keyword")
if err := s.Save("sample.alfredsnippets"); err != nil {
panic(err)
}
}

```