mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 05:32:08 +00:00
16 lines
440 B
Python
16 lines
440 B
Python
import djclick as click
|
|
|
|
from libraries.github import LibraryUpdater
|
|
|
|
|
|
@click.command()
|
|
def command():
|
|
"""
|
|
Calls the LibraryUpdater, which retrieves the active boost libraries
|
|
from the Boost repo and updates the models in our database with the latest
|
|
information on that library (repo) and its issues, pull requests, and related
|
|
objects from GitHub.
|
|
"""
|
|
updater = LibraryUpdater()
|
|
updater.update_libraries()
|