GraphQL API and utilities for the rpdata project
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.

10 lines
189 B

  1. package unknownnicks
  2. import (
  3. "git.aiterp.net/rpdata/api/models"
  4. )
  5. // List lists the top N unknown nicks.
  6. func List(limit int) ([]models.UnknownNick, error) {
  7. return list(nil, limit)
  8. }