From 5cc74550322083cd00440b447b62fd4edb87cac5 Mon Sep 17 00:00:00 2001 From: Brian Wo <45139213+brainwo@users.noreply.github.com> Date: Fri, 9 Aug 2024 23:23:36 +0800 Subject: [PATCH] Add missing license header Signed-off-by: Brian Wo <45139213+brainwo@users.noreply.github.com> --- {bin => example}/kara.dart | 0 lib/src/exception.dart | 4 ++++ 2 files changed, 4 insertions(+) rename {bin => example}/kara.dart (100%) diff --git a/bin/kara.dart b/example/kara.dart similarity index 100% rename from bin/kara.dart rename to example/kara.dart diff --git a/lib/src/exception.dart b/lib/src/exception.dart index 237d63c..2529234 100644 --- a/lib/src/exception.dart +++ b/lib/src/exception.dart @@ -1,2 +1,6 @@ +// Copyright 2024 Brian Wo. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be found +// in LICENSE or at https://opensource.org/license/BSD-3-clause. + /// Exception thrown when parsed file is not a Kara file. class NotKaraException implements Exception {}