OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 package mail | |
6 | |
7 // Interface is the interface for all of the mail methods. | |
8 type Interface interface { | |
9 Send(msg *Message) error | |
10 SendToAdmins(msg *Message) error | |
martiniss
2015/12/16 21:54:15
Why is this a separate function? Also, do these ne
iannucci
2015/12/17 00:01:07
These are the same as the functions in the SDK. I'
| |
11 | |
12 Testable() Testable | |
13 } | |
OLD | NEW |