github.com/alimy/mir/v4@v4.1.0/internal/naming/naming.go (about)

     1  // Copyright 2020 Michael Li <alimy@gility.net>. All rights reserved.
     2  // Use of this source code is governed by Apache License 2.0 that
     3  // can be found in the LICENSE file.
     4  
     5  package naming
     6  
     7  // NamingStrategy naming strategy interface
     8  type NamingStrategy interface {
     9  	Naming(string) string
    10  }