github.com/grantbow/fit@v0.7.1-0.20220916164603-1f7c88ac81e6/fitapp/Milestone.go (about)

     1  package fitapp
     2  
     3  import (
     4  	bugs "github.com/grantbow/fit/issues"
     5  )
     6  
     7  // Milestone is a subcommand to assign a milestone to an issue.
     8  func Milestone(args argumentList, config bugs.Config) {
     9  	fieldHandler("milestone", args, bugs.Issue.SetMilestone, bugs.Issue.Milestone, config)
    10  }