Skip to content

Commit

Permalink
📦 Init Function
Browse files Browse the repository at this point in the history
  • Loading branch information
shnizzedy committed Jul 8, 2024
1 parent b19907a commit b013ccc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CPAC/utils/interfaces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
# Copyright (C) 2010-2024 C-PAC Developers

# This file is part of C-PAC.

# C-PAC is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.

# C-PAC is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# License for more details.

# You should have received a copy of the GNU Lesser General Public
# License along with C-PAC. If not, see <https://www.gnu.org/licenses/>.
"""Custom interfaces for C-PAC."""

from . import brickstat, datasink, function, pc
from .function import Function

__all__ = [
"function",
"Function",
"pc",
"brickstat",
"datasink",
Expand Down

0 comments on commit b013ccc

Please sign in to comment.