From 31a47d05b18ae84d27581d6471822eae1f0ca7b5 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 31 Aug 2019 01:05:50 +0900 Subject: [PATCH] event: Add comments about backforward compatibility --- event/event.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/event/event.go b/event/event.go index 17356451a..621bb169c 100644 --- a/event/event.go +++ b/event/event.go @@ -14,6 +14,9 @@ // Package event is a package that models events that occur during // the execution of a program. +// +// This package is still experimental and there is no guarantee for +// backward compatibility so far. package event // Event is an interface that custom events should implement.