From 877db521629103d3ad6ec3333b3d6d5dad409664 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 26 Mar 2021 11:51:18 -0400 Subject: [PATCH] Add license header --- piker/_daemon.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/piker/_daemon.py b/piker/_daemon.py index a844708a..1dc11c16 100644 --- a/piker/_daemon.py +++ b/piker/_daemon.py @@ -1,5 +1,22 @@ +# piker: trading gear for hackers +# Copyright (C) Tyler Goodlet (in stewardship for piker0) + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program 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 Affero General Public License for more details. + +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + """ -pikerd daemon lifecylcle & rpc +Structured, daemon tree service management. + """ from typing import Optional, Union from contextlib import asynccontextmanager