Moves the `domain` and `ports` packages from `internal/core` to `internal`. This refactoring simplifies the directory structure by elevating the core architectural concepts of domain and ports to the top level of the `internal` directory. The `core` directory is now removed as its only purpose was to house these two packages. All import paths across the project have been updated to reflect this change.
9 lines
292 B
Go
9 lines
292 B
Go
package domain
|
|
|
|
// Organization represents the core business object for an organization.
|
|
// It contains identifying information such as name, address, and phone number.
|
|
type Organization struct {
|
|
Name string `json:"name"`
|
|
Address string `json:"address"`
|
|
Phone string `json:"phone"`
|
|
}
|