Over The Wire Advent 2019 Battle of the Galaxies
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
206B

  1. package strategies
  2. import (
  3. "botg/models"
  4. "fmt"
  5. )
  6. type NoneStrategy struct {
  7. }
  8. func (s NoneStrategy) Execute(stars []models.Star, flights []models.Flight, links []models.Link) {
  9. fmt.Println("done")
  10. }