renames /internal/connector to /internal/m365. No logic changes in this PR. Only the dir rename, import renames, and one linter shadowing rename. --- #### Does this PR need a docs update or release note? - [x] ⛔ No #### Type of change - [x] 🧹 Tech Debt/Cleanup #### Issue(s) * #1996 #### Test Plan - [x] ⚡ Unit test - [x] 💚 E2E
10 lines
153 B
Go
10 lines
153 B
Go
package resource
|
|
|
|
type Category string
|
|
|
|
const (
|
|
UnknownResource Category = ""
|
|
Users Category = "users"
|
|
Sites Category = "sites"
|
|
)
|