mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-03 05:03:43 +08:00
Most of the code are moved to dedicated subpackages, but some others can't due to the cycle dependencies. Signed-off-by: Chenxiong Qi <cqi@redhat.com>
9 lines
171 B
Python
9 lines
171 B
Python
# -*- coding: utf-8 -*-
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import gi
|
|
gi.require_version("Modulemd", "2.0")
|
|
from gi.repository import Modulemd # noqa
|
|
|
|
__all__ = ['Modulemd']
|