From f4904884ad4c0b9183d4d849a557e99d89b224f8 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Sun, 9 Mar 2025 01:56:09 -0500 Subject: [PATCH] Improve named actor interface --- actor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actor.go b/actor.go index 90418eb..4427d86 100644 --- a/actor.go +++ b/actor.go @@ -30,7 +30,7 @@ type Actor interface { } // Named is any object with a name. -type Named() string { +type Named interface { // Name returns the name. This doesn't need to be the same as Type. It // must return the same string every time. It is used to differentiate // actors of the same type in logs.