refactor: move resolver formatter to services package

This commit is contained in:
Prad Nukala
2024-11-25 15:17:19 -05:00
parent 4cbada21a7
commit 711acd6bb8
+7
View File
@@ -0,0 +1,7 @@
package resolver
type DID string
func (d DID) String() string {
return string(d)
}