PushOptStrictMode returns a function that sets the strictMode setting on push
(strictMode bool)
| 765 | |
| 766 | // PushOptStrictMode returns a function that sets the strictMode setting on push |
| 767 | func PushOptStrictMode(strictMode bool) PushOption { |
| 768 | return func(operation *pushOperation) { |
| 769 | operation.strictMode = strictMode |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | // PushOptCreationTime returns a function that sets the creation time |
| 774 | func PushOptCreationTime(creationTime string) PushOption { |