This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"__schema": { | |
"queryType": { | |
"name": "QueryRoot" | |
}, | |
"mutationType": { | |
"name": "Mutation" | |
}, | |
"subscriptionType": null, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import ComposableArchitecture | |
struct ToDo : Identifiable, Equatable{ | |
var id = UUID() | |
var title: String | |
var done: Bool | |
} | |
struct ToDoState : Equatable { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+++ editor.txt | |
+description: Edit access to all resources. | |
+- accessapproval.requests.get | |
+- accessapproval.requests.list | |
+- accessapproval.settings.get | |
+- accesscontextmanager.accessLevels.create | |
+- accesscontextmanager.accessLevels.delete | |
+- accesscontextmanager.accessLevels.get | |
+- accesscontextmanager.accessLevels.list | |
+- accesscontextmanager.accessLevels.replaceAll |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+- accesscontextmanager.accessLevels.create | |
+- accesscontextmanager.accessLevels.delete | |
+- accesscontextmanager.accessLevels.replaceAll | |
+- accesscontextmanager.accessLevels.update | |
+- accesscontextmanager.accessPolicies.create | |
+- accesscontextmanager.accessPolicies.delete | |
+- accesscontextmanager.accessPolicies.update | |
+- accesscontextmanager.accessZones.create | |
+- accesscontextmanager.accessZones.delete | |
+- accesscontextmanager.accessZones.update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml | |
run: | |
linters-settings: | |
govet: | |
enable-all: true | |
disable: | |
- shadow | |
unused: | |
check-exported: true | |
unparam: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ==================================================================== | |
* Copyright (c) 1995-2000 Lyonel VINCENT and Jeff Morrow. | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions | |
* are met: | |
* | |
* 1. Redistributions of source code must retain the above copyright |