From b013cccb49c05e4297a0b088727ebb41e99e8988 Mon Sep 17 00:00:00 2001 From: Jon Clucas Date: Mon, 8 Jul 2024 13:54:48 -0400 Subject: [PATCH] :package: Init `Function` --- CPAC/utils/interfaces/__init__.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CPAC/utils/interfaces/__init__.py b/CPAC/utils/interfaces/__init__.py index 126bb1c22b..6716a562f5 100644 --- a/CPAC/utils/interfaces/__init__.py +++ b/CPAC/utils/interfaces/__init__.py @@ -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 . +"""Custom interfaces for C-PAC.""" + from . import brickstat, datasink, function, pc +from .function import Function __all__ = [ "function", + "Function", "pc", "brickstat", "datasink",