Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
// Copyright (C) 2018 Jeffrey L. Overbey. Use of this source code is governed
// by a BSD-style license posted at http://blog.jeff.over.bz/license/
package main
import (
"os"
"github.com/godoctor/godoctor/engine"
"github.com/godoctor/godoctor/engine/cli"
"github.com/joverbey/goaddcopyright/refactoring"
)
func main() {
engine.AddRefactoring("addcopyright", new(refactoring.AddCopyright))
os.Exit(cli.Run("Add Copyright Header", os.Stdin, os.Stdout, os.Stderr, os.Args))
}